Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
3k views

How to use (install) dblink in postgresql?

I am used to Oracle and to create a dblink in my schema and then access to a remote database like this : mytable@myremotedb, is there anyway do to the same with PostgreSQL ? Right now I am using ...
4
votes
3answers
6k views

Oracle Syntax for Creating Database Link Owned by Another User

The typical syntax for creating a db link is as follows: create database link remote_db_link connect to remote_user identified by remote_password using 'remote_db' But I'd like my DB link owned ...
4
votes
4answers
5k views

Best way to handle LOBs in Oracle dblink'ed tables

If you create an Oracle dblink you cannot directly access LOB columns in the target tables. For instance, you create a dblink with: create database link TEST_LINK connect to TARGETUSER IDENTIFIED BY ...
3
votes
2answers
160 views

Securing Oracle distributed transactions against network failures

I am synchronizing a table in a local database with data from a table on a database on the opposite side of the earth using distributed transactions. The networks are connected through vpn over the ...
3
votes
4answers
5k views

Select and Insert across dblink

I am having a bit of trouble with a select into insert across a dblink in oracle 10. I am using the following statement: INSERT INTO LOCAL.TABLE_1 ( COL1, COL2) SELECT COL1, COL2 FROM ...
3
votes
3answers
1k views

MySQL equivalent of PostgreSQL's dblink module?

PostgreSQL's dblink module allows for SQL statements to be written that execute other SQL statements against a remote PostgreSQL database. Is there an equivalent to PostgreSQL's dblink for MySQL?
2
votes
2answers
93 views

How to create Oracle database link with sysdba privilege

I want to: select * from v$database@standby; Problem: standby is mounted so only a SYSDBA user can connect to query it I didn't find how to use a database link using SYSDBA privilege My goal ...
2
votes
2answers
384 views

Oracle: Using a database link in a stored procedure : table or view does not exist

I currently have an issue whereby I cannot reference a table in a linked database within a stored procedure. I get the error message: ORA-00942: table or view does not exist Here are the steps I ...
2
votes
2answers
244 views

Moving XML over a DBLink

I am trying to move some data over a dblink and one of the columns is an XMLType column. The code looks like this: begin delete from some_schema.some_remote_tab@src_2_trg_dblink; INSERT INTO ...
2
votes
1answer
256 views

select * throgh dblink problem

I have some trouble when trying to update a table by looping cursor which select from source table through dblink. I have two database DB1, DB2. They are two different database instance. And I am ...
2
votes
1answer
908 views

Run SQL Server Stored Procedure via Database Link from Oracle

Referring to How to execute an Oracle stored procedure via a database link., it does not work in my case. I don't know what I am missing. I have a SQL Server instance and Oracle database in the same ...
2
votes
1answer
2k views

Oracle 11gr2 connection to Sql Server using dg4msql problem

To whom it may respond to, We have installed Oracle 11g r2 on a Redhat Enterprise Linux 5.4 . We are trying to connect to a Sql Server 2005, after applying some notes the error below is the result we ...
2
votes
5answers
2k views

How to check if a database link is valid in Oracle?

i have a main database with only setup data at the headquarter and several databases at different branches,i created a database link for each branch server. In some case i would like to query all the ...
2
votes
3answers
221 views

Postgres, plpgsql: Is there a way to connect to other DB from inside of a stored procedure?

I have two DB's one is feed by filtered data from another, now i'm using perl script witch executes query on foreign DB, stores a result in a csv file, and loads it to local DB using \COPY sytnatx Is ...
2
votes
2answers
6k views

Referencing Oracle user defined types over DBLINK?

I'm working in two different Oracle schemas on two different instances of Oracle. I've defined several types and type collections to transfer data between these schemas. The problem I'm running into ...
2
votes
3answers
1k views

Why does Char(1) change to Char(3) when copying over an Oracle DBLINK?

I have 2 databases, and I want to transport an existing table containing a CHAR column from database A to database B. Database A is Oracle 9i, has encoding WE8ISO8859P1, and contains a table "foo" ...
1
vote
2answers
39 views

INSERT ALL INTO a table over a dblink .. Is it possible?

When I execute the following: INSERT ALL INTO table@database_link(columnName) VALUES (columnValue) SELECT columnValue FROM localTable; I get an error SQL Error: ORA-02021: DDL operations are ...
1
vote
1answer
50 views

Pushing records produced by dblink out of the calling stored procedure

Is it possible to simply pass the resulting records generated by dblink() up, as a result of the calling function, something like: create function execute_generic_sql_on_remote_databases(_sql text) ...
1
vote
0answers
64 views

cannot query MSSQL system tables over db link created using DG4MSQL

I am trying to create db link from Oracle 11g to SQL Server 2005 using DG4MSQL gateway. After creating db link I am not able to query MSSQL system views (sys.services or sys.objects) using JDBC ...
1
vote
1answer
72 views

Nested loop in query over dblink (Oracle 11g)

I have a SQL query of the form SELECT ... FROM A@DB1 a, B@DB1 b, C@DB2 c WHERE A.x = B.x and B.y = C.y where the first two tables are dblinks to one database, and the last is on a second database. ...
1
vote
1answer
161 views

ORA-01031: insufficient privileges when inserting via dblink

This works: (connect to some_db) INSERT INTO some_schema.some_table(id) VALUES (some_schema.some_table.nextval); THis works too: (connect to some_other_db) SELECT ...
1
vote
2answers
110 views

Is there any short cut for using dblink in Postgres?

In Postgres, you can link to your other databases using dblink, but the syntax is very verbose. For example you can do: SELECT * FROM dblink('dbname=name port=1234 host=host ...
1
vote
2answers
62 views

Keeping track of all values created by a sequence for multiple inserts

In PL SQL, I'm writing a stored procedure that uses a DB link: CREATE OR REPLACE PROCEDURE Order_Migration(us_id IN NUMBER, date_id in DATE) as begin INSERT INTO ORDERS(order_id, company_id) ...
1
vote
1answer
359 views

postgres dblink escape single quote

Related Link: String literals and escape characters in postgresql Here is my error: ERROR: type "e" does not exist Here is my query: SELECT * FROM dblink('host=theHostName port=1234 ...
1
vote
1answer
296 views

Postgresql: dblink in Stored Functions

I want to insert top 20 ROWS from a table tbl_A in db_A to tbl_B in db_B. The schema for tbl_A and tbl_B is: CREATE TABLE <tbl_name> ( id serial PRIMARY KEY, int a, int b ); I have ...
1
vote
1answer
415 views

Using Partition on oracle table from a DB link

I am working on Oracle 9i my question is: can I use a partition over a table through a dblink for example I am working on DB1 and want to use a table A_table which has a partition with name part1 ...
1
vote
1answer
631 views

Error on Oracle while using DBLINK

I am Using jboss5.1.x, EJB3.0 ,JPA3. I am trying to do 'select' query from view which is connected via dblink to another database. source database is Oracle 9, destination dabatase is Oracle 8. I ...
1
vote
1answer
649 views

How can I close Oracle DbLinks in JDBC with XA datasources and transactions to avoid ORA-02020 errors?

I have a JDBC-based application which uses XA datasources and transactions which span multiple connections, connected to an Oracle database. The app sometimes needs to make some queries using join ...
1
vote
1answer
179 views

Why does DbMetal Generate Table Attribute with “main”?

I'm a newbie with DBLink and Sqlite. When DbMetal generates Nortwind.cs (C#) it marks some methods with a Table attribute: [Table(Name="main.Categories")] // C# After I used DbMetal to create a ...
1
vote
3answers
741 views

Oracle clob over dblink with different charset

Here is the scenario: Oracle A: charset WE8ISO8859P1 Oracle B: charset WE8MSWIN1252 Oracle A <- dblink -> Oracle B I can't access Oracle B directly, firewall issues :( I have to get some ...
1
vote
3answers
2k views

Copying metadata over a database link in Oracle 10g

Thanks in advance for your help experts. I want to be able to copy over database objects from database A into database B with a procedure created on database B. I created a database link between the ...
1
vote
1answer
2k views

Oracle Generic DB Link not working

I'm trying to use oracle's hsodbc generic database link driver to access a postgresql database from my oracle 10gr2 database server. I think I have everything configured but I'm receiving this error ...
1
vote
2answers
2k views

Is it possible to use a database link between an oracle database and a postgresql database on different physical servers

I've trying to streamline an intranet application where some of the data is stored locally on the postgresql database of the intranet server and other related data is stored in our enterprise oracle ...
1
vote
4answers
3k views

Oracle sql types over dblink

I have two schemas: A and B (Oracle 9). At the A there is a dblink to B. At the B there is a package, that i calls from A. Procedures in B package can returns varying count results and i think that ...
1
vote
2answers
621 views

PostgreSQL DbLink Compilation on Solaris 10

After successfully building dblink on solaris 10 using Sun C 5.9 SunOS_sparc 2007/05/03 and gmake. I ran gmake installcheck and got the following output: ========== running regression test queries ...
0
votes
1answer
32 views

DBLink from SQL Server to postgresql: get sequence nextval

I've got a SQL Server 2008 that needs to connect to a POSTGRESQL 9.0 server. One of the tasks that i need is to get the next value of a sequence over the POSTGRESQL Example 1 : execute ('select ...
0
votes
1answer
26 views

Sync transactions between databases in PostgreSQL using dblink

I would like to sync a set of tables between two databases, transparently without application code chages. My idea is to create triggers on insert, update and delete, in the source database tables to ...
0
votes
1answer
49 views

DBLINK from SQL Server to Postgresql ( Postgis ) avoiding odbc

I have an issue regarding an dblink that our client ask us to do. Postgres + postgis SQL Server 2008 We will need to have an dblink on (2) that connects to (1) via dblink but the problem is with ...
0
votes
1answer
177 views

Testing DB Link - ORA-12154: TNS:could not resolve the connect identifier specified

I know there is a load of times this question has been asked but I can't quite figure out how to apply this information to my situation. I have two databases of which I'm trying to connect with a DB ...
0
votes
1answer
87 views

Using an array as an argument in a dblink connection query results in error message:

I'm using Postgresql 8.4 and I am writing a series of functions where I want to be able to pass in an array of integers, which I want evaluated by the dblink connection query. The function looks like ...
0
votes
1answer
58 views

How to log dblink_exec results?

In PostgreSQL I use dblink_exec. Is there any way I can log each time dblink gets executed ?
0
votes
1answer
40 views

How can I get the column names of a table referred by a dblink?

I am new to oracle. I have a table referred using a dblink, say MY_TABLE@MY_DBLINK. Suppose MY_TABLE has columns like COLUMN_1, COLUMN_2. How can I write a query to return the column names? I tried ...
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
0answers
99 views

Query view joining two tables over dblink does not work the first time

I have a oracle 10g database A and B connected over a dblink and a view (rvs_duedate_view) which joins a table A.rvsduedate and B.rlstatus. Within a junit test I insert data into the database B ...
0
votes
0answers
48 views

Calling Function in SQL Server through DBLINK

I need to call a function that exists in another database through DBLINK. The remote database is SQL Server 2005. How can this be done?
0
votes
2answers
75 views

How to make ActiveRecord access a table from a dblink (correctly)?

I am developing a RoR project using an Oracle database. Recently I added a DBLink to another database and this works perfectly just from an SQL. When I want to add the table to my class with the ...
0
votes
5answers
78 views

Add Indexes to columns in remote table - Oracle

Am querying a remote database using DBLink. Now am wondering to speed up the query, how can i add indexes to few columns in the remote table. Would appreciate if anyone can provide any recommendations ...
0
votes
3answers
111 views

insert table from diferent database

SQL INSERT INTO t_publikasi ("idPublikasi","kdBahanPustaka","bulanTerbit", "tahunTerbit", "noUrutBI", "pdfDir", "judul") SELECT * FROM dblink('dbname=perpus2 port=5432 user=dbdev ...
0
votes
0answers
155 views

postgresql: dblink

Well, before asking question: I do not have dblink installed on my machine (Ubuntu). My user account was tampered by me and sudo permissions were lost. After some tries I decided I'll reinstall the OS ...
0
votes
0answers
570 views

postgresql: INSERT INTO … (SELECT * …) - II [closed]

Possible Duplicate: postgresql: INSERT INTO … (SELECT * …) Referring to postgresql: INSERT INTO ... (SELECT * ...) I think either I could not explain my question or I did not ...

1 2