|
The DB2 UDB for Windows Enterprise Server edition does include some federated database support that will support this. You would need to configure federated access to you iSeries server including creating a nickname for the DB2 UDB for iSeries table that you're trying to select from.
INSERT INTO db2win_table SELECT * FROM db2iseries_nickname
Another alternative supported by DB2 UDB for Windows is:
DECLARE c1 CURSOR FOR SELECT * FROM db2iseries_nickname ;
LOAD db2luw_table FROM c1 OF CURSOR REPLACE ==================================
MORE INFORMATION ON THIS TOPIC
==================================
Visit the ITKnowledge Exchange and get answers to your DB2 questions fast.
Check out this Search400.com Featured Topic: Expert advice on DB2
Search400.com's targeted search engine: Get relevant information on DB2/400.
The Best Web Links: Tips, tutorials and more.
|