On Friday, September 29, 2017 at 3:13:52 PM UTC+2, Gregor Kovač wrote:
Docs on developerWorks states that INGEST is fast, but LOAD is very fast. You can find this in section "Comparing ingest to other methods".
At your destination database, you can try to load from a remote (cataloged) database without having the intermediate steps of exporting to flat, moving to destination and then loading.
Example:
declare C1 cursor database <SOURCE_DATABASE> user <USERNAME> using <PASSWORD> for select * from <SOURCE_SCHEMA>.<TARGET_TABNAME> ;
load from C1 of cursor replace into <TARGET_SCHEMA>.<TARGET_TABNAME> nonrecoverable ;
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)