Hi,
I need to transfer multiple tables from one DB to another DB. I have chosen "load from cursor" method.
I created multiple "load from cursor" commands from remote database using federated system and I need to execute them in parallel. Are there any DB2 parameters that could benefit (speed up) performance if they are changed/increased?
Sample:
Code:
CREATE NICKNAME ADMIN.SOURCE_TABLE FOR MYSYSTEM.ADMIN.SOURCE_TABLE
DECLARE MYCURSOR CURSOR FOR SELECT COL1 FROM ADMIN.SOURCE_TABLE;
LOAD FROM MYCURSOR OF CURSOR INSERT INTO ADMIN.TARGET_TABLE;
So what are DB parameters that could help increase performance?
My system:
Source (remote) DB: DB2/VSE/zSeries v7.5
Target DB: DB2/Linux/zSeries v8.2 FP11
Thanks,
Grofaty