rarogersonkf
Programmer
Is this possible?
CONNECT TO <remotemachine> USER <user> USING <password>;
INSERT INTO <localmachine>.localtable
SELECT *
FROM <remotemachine>.remotetable;
If I issue
SELECT *
FROM <remotemachine>.remotetable;
then all rows are corrently returned.
My problem is specifying the local table.
Can I access a remote table and a local table in one statement?
Thanks in advance,
Rob
CONNECT TO <remotemachine> USER <user> USING <password>;
INSERT INTO <localmachine>.localtable
SELECT *
FROM <remotemachine>.remotetable;
If I issue
SELECT *
FROM <remotemachine>.remotetable;
then all rows are corrently returned.
My problem is specifying the local table.
Can I access a remote table and a local table in one statement?
Thanks in advance,
Rob