How do you Load a table ?? and what is Load replace ?
Answer Posted / karthikeyan@ibm
In General, system will have standard PROC(DSNUPROC) to
load the Table.Three symbolic parameter needs to be passed.
But only one parameter is mandatory SYSTEM=DB2T(subsystem).
Let me explain the Proc. The Proc contains a step with
DSNUTILB as program to load the table. In Parms, pass the
DB2 susbsystem. In SYSREC ddname points to the dataset that
contains the records to be load.SYSIN ddname points to the
control card that is used to load the table.Control card
contains information like tablename to be loaded, Position
of the column and other options like LOAD with REPLACE or
Load with RESUME, ENFORCE YES OR NO and LOG Yes OR NO.
When you want to specify REPLACE option, all the records or
rows in the table are deleted before loading and RESUME
option will retain the old records or rows in the table.
The tablespace will put in COPY PENDING status when you
load the table with Option LOG NO.
//DSNUPROC EXEC PGM=DSNUTILB,REGION=6144K,PARM='DB2'
//SYSREC DD DSN=&LOADdataset,DISP=OLD
//SYSIN DD DSN=&Controldataset,DISP=OLD
| Is This Answer Correct ? | 26 Yes | 3 No |
Post New Answer View All Answers
What is the physical storage length of timestamp data type?
What is ibm db2 client?
What is the usage of open cursor command?
What is db2 catalog database?
Can there be more than one cursor open for any program?
What is difference between rollback and commit?
What is database reorganization?
What is the purpose of rollback and commit?
What is dclgen in db2?
How to find the number of rows in a db2 table?
What does db2 blu stand for?
What is host variable?
What is an instance in db2?
Hi, i would like to start a new carrier in DB2 DBA.Which and what all step should i have to take..?
How can you do the explain of a dynamic sql statement?