Tagged Questions
The database-link tag has no wiki summary.
10
votes
1answer
16k views
How to execute an Oracle stored procedure via a database link
Can I call a stored procedure in Oracle via a database link?
The database link is functional so that syntax such as...
SELECT * FROM myTable@myRemoteDB
is functioning. But is there a syntax ...
4
votes
2answers
397 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,
...
3
votes
2answers
293 views
Oracle 10g : Is transfer via database link compressed ? is it possible?
I'm transferring data from one base to another via database links (using INSERT INTO SELECT ...).
I want to know if data transferred through the link is compressed or can be compressed to avoid too ...
2
votes
1answer
135 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.
2
votes
2answers
390 views
Transferring MySQL Database Link Across Multiple PHP Pages
Are there any tricks to transferring and/or sharing the Resource Links across multiple PHP pages? I do not want the server to continue connecting to the database just to obtain another link to the ...
1
vote
3answers
1k 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
5answers
329 views
Create a Test Database copy of Production with only a sample set of Data
We have 2 Oracle databases. One is our Production customer database. The other is a test database. The Test database is a copy of production without any data...just empty tables. I am trying to ...
1
vote
1answer
145 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, ...
1
vote
3answers
109 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
0answers
24 views
how do you spool from a stored procedure that is executed through a database link?
I am using a UNIX script to run sql code that kicks off a stored procedure via database link. I can get the procedure to complete successfully, however none of the DBMS outputs are spooled to the ...
0
votes
0answers
28 views
Call SQL Server functions via Oracle database link
Is there a way to execute the following statement from Oracle using a database link to a SQL Server instance without having to create a view on the target instance?
select db_name(), @@SERVERNAME
I ...
0
votes
1answer
47 views
Can you create dblink for the same database you are connected?
I know this is kind of weird but I would just like to know how this was being setup.
There are two database and they are the same (one is mirror from the other).
The first db is named "reportsdw" and ...
0
votes
1answer
137 views
Dynamic DB links in Oracle
Is it possible to have dynamic database links in Oracle? I am using Oracle9i database.
Let me illustrate by what I require.
I have several views that are formed using dblinks.
For example:
CREATE ...
0
votes
2answers
618 views
Database Links - Oracle 10g and Ms Access 2007
I'm trying to create a link between oracle 10g and ms access 2007 but I don't know how to set parameters in my tnsnames.ora file to access my MS Access db.
I've created new Data Source in ODBC Data ...
0
votes
3answers
2k views
How do I create a Database Link where remote and local are the same server
I have a need to create a database link that is a link to a schema on the same server. Is there a special keyword to use for this? ( like local or localhost )
I am not entirely sure what the name of ...
0
votes
3answers
77 views
Help With Database Layout
I am working on a site similar to Craigslist where users can make postings and sell items in different cities. One difference between my site and Craigslist will be you will be able to search by zip ...
0
votes
4answers
211 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 ...
0
votes
2answers
955 views
Network Outage Causes Stored Procedure Querying Across DB Link to Hang Forever
A number of stored procedures I support query remote databases over a WAN. The network occasionally goes down, but the worst that ever happened was the procedures failed and would have to be ...