0
votes
0answers
20 views

UPDATE table from another TABLE using database link

I need to add values to username field in table1 from table2 in different connection. What I have so far is: UPDATE conn1.table1 SET table1.USERNAME = ( SELECT MSUSERNAME ...
0
votes
1answer
74 views

Is there any other way to query two databases with Oracle SQL Developer without creating a database link

I'm trying to code a query that needs to access two separate database connections and cant figure out how. I have my .sql file connected to connection: A, but i need to join information from ...
0
votes
0answers
83 views

SQL - full-text search database links in procedures, triggers, etc

The company I'm working at is migrating their databases from Oracle 10g to 11g. On Monday we want to clean our development database and clone the production database to that storage. My first task is ...
0
votes
1answer
832 views

Variable for Database Link Name

I want to do v$session@remotedatabase where remotedatabase is a variable for a dblink address. Is that possible? I'm using Apex 4 and trying to get temporary space on all databases. Current query ...
2
votes
3answers
8k views

Calling oracle function using database link

I have created a oracle function called getEmployee(id in varchar) in my remote database and I'm trying to call it from my local database using database link. In getEmployee, I'm trying to return a ...
1
vote
1answer
335 views

Should database base links in oracle be droped/closed after you are done using them?

I have an SQL script that connects to another database using "create database link", and copies some data. Should this database base link be dropped or closed after I am done using it? (Say, ...
3
votes
1answer
370 views

Can I chain database links in Oracle?

I have 3 databases. 1 links to 2, 2 links to 3. I'd like to query tables in 3, from 1. I tried third_db_tab@3@2 and it did not work. Wondering if this is possible and if so, what the syntax is.
4
votes
2answers
790 views

Oracle EXISTS query is not working as expected - DB Link bug?

I'm completely baffled by the results of this query: select count(*) from my_tab mt where mt.stat = '2473' and mt.name= 'Tom' and exists (select * from company_users@colink.world cu, ...
1
vote
3answers
149 views

Problem when changing context (impersonation) and using a server link in SQL Server 2005

I get a strange behaviour when I combine impersonation with database links in SQL Server 2005. First, I connect to a database server using simple SQL Server Authentication with Login 'John'. On this ...
0
votes
4answers
377 views

How does one cheaply validate the existance of a column in a table in another schema with Oracle?

The environment is Oracle 9 & 10. I do not have DBA level access. The problem is to verify that a specific column exists in a specific table, in another schema. There are two cases to deal ...