Subject Re: [IBO] How can I copy a table from one database to another
Author Helen Borrie
At 10:49 PM 19/02/2006, you wrote:
>I have two tables which are the same in different databases. I want
>to copy the contents of database1.table1 to database2.table1

TIB_Datapump. Create the table in database2 using the metadata from
database1. Then set up the ib_datapump to select from the source
table and insert to the destination table, all done in a
cross-database transaction.

Helen