Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not sure if its standard SQL:

 INSERT INTO tblA 
 (SELECT id, time 
    FROM tblB 
   WHERE time > 1000)  

What I'm looking for is: what if tblA and tblB are in different DB Servers.

Does PostgreSql gives any utility or has any functionality that will help to use INSERT query with PGresult struct

I mean SELECT id, time FROM tblB ... will return a PGresult* on using PQexec. Is it possible to use this struct in another PQexec to execute an INSERT command.

EDIT:
If not possible then I would go for extracting the values from PQresult* and create a multiple INSERT statement syntax like:

INSERT INTO films (code, title, did, date_prod, kind) VALUES
    ('B6717', 'Tampopo', 110, '1985-02-10', 'Comedy'),
    ('HG120', 'The Dinner Game', 140, DEFAULT, 'Comedy'); 

Is it possible to create a prepared statement out of this!! :(

share|improve this question
I don't know if the INSERT syntax you posted is ANSI, but it is widely supported (Oracle, MySQL, SQL Server, SQLite...). But the brackets aren't necessary. – OMG Ponies May 21 '11 at 16:57

3 Answers

up vote 23 down vote accepted

As Henrik wrote you can use dblink to connect remote database and fetch result. For example:

psql dbtest
CREATE TABLE tblB (id serial, time integer);
INSERT INTO tblB (time) VALUES (5000), (2000);

psql postgres
CREATE TABLE tblA (id serial, time integer);

INSERT INTO tblA
    SELECT id, time 
    FROM dblink('dbname=dbtest', 'SELECT id, time FROM tblB')
    AS t(id integer, time integer)
    WHERE time > 1000;

TABLE tblA;
 id | time 
----+------
  1 | 5000
  2 | 2000
(2 rows)

PostgreSQL has record pseudo-type (only for function's argument or result type), which allows you query data from another (unknown) table.

Edit:

You can make it as prepared statement if you want and it works as well:

PREPARE migrate_data (integer) AS
INSERT INTO tblA
    SELECT id, time
    FROM dblink('dbname=dbtest', 'SELECT id, time FROM tblB')
    AS t(id integer, time integer)
    WHERE time > $1;

EXECUTE migrate_data(1000);
-- DEALLOCATE migrate_data;

Edit (yeah, another):

I just saw your revised question (closed as duplicate, or just very similar to this).

If my understanding is correct (postgres has tbla and dbtest has tblb and you want remote insert with local select, not remote select with local insert as above):

psql dbtest

SELECT dblink_exec
(
    'dbname=postgres',
    'INSERT INTO tbla
        SELECT id, time
        FROM dblink
        (
            ''dbname=dbtest'',
            ''SELECT id, time FROM tblb''
        )
        AS t(id integer, time integer)
        WHERE time > 1000;'
);

I don't like that nested dblink, but AFAIK I can't reference to tblB in dblink_exec body. Use LIMIT to specify top 20 rows, but I think you need to sort them using ORDER BY clause first.

share|improve this answer
Thanks for your response. Well, one more quick question... INSERT INTO tblA SELECT id, time FROM dblink('dbname=dbtest', 'SELECT id, time FROM tblB') AS t(id integer, time integer) WHERE time > 1000; Can I make a prepared statement out of this? – Mayank May 21 '11 at 19:28
@Mayank Sure, answer is updated. – Grzegorz Szpetkowski May 21 '11 at 19:44
Thank a lot :-) – Mayank May 21 '11 at 20:21
@Mayank: I see that your revised question has been closed, so I add my answer here. – Grzegorz Szpetkowski May 22 '11 at 10:27

You can use dblink to create a view that is resolved in another database. This database may be on another server.

share|improve this answer
Thanks for the reply. But I did not get how INSERT INTO ... (SELECT FROM ...) will work using dblink. What I need is INSERT INTO ... to be run in dblink session to other DB Server, but (SELECT FROM ...) in my current session. – Mayank May 21 '11 at 17:32
You just define tblA as view that is backed by dblink. So inserts, updates, deletes will be done in the other database. dblink is not readonly. – Hendrik Brummermann May 21 '11 at 18:41

It will simply not work in SQL if tables are in different servers. Database Management Systems are management systems. What you're asking is a scripting which should be done via bash or a scripting (or compiled) language (PHP, Python. Java etc.)

Here's an idea how you can do this in bash:

mysqldump -h host1 -d db1.tblB | tr "tblB" "tblA" | mysql -h host2 db2

Here, we export records and structure of tblB as SQL and replace all tblB occurrences with tblA and pass the modified query to db2 by mysql command.

share|improve this answer
The question is tagged postgreSQL, not MySQL... – OMG Ponies May 21 '11 at 17:07
I'm sorry, I didn't see that. I think it is very similar in postgres. I just wanted to give an idea. – ahmet alp balkan May 21 '11 at 17:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.