wht r the requirements for writing a cobol-db2 pgm ?
Answer Posted / ajay kumar ande
3 steps..........
1.)pre-compilation
2.)bind
3.)run
1.PRECOMPLATION
// jobcard job......
// act01 exec pgm=dsnhpc
// DBRMLIB DD DSN=
// act01 exec pgm=IGYCRCTL
// SYSLOAD DD DSN=&&TEMP,DISP=PASS
// act01 exec pgm=IEWL
// SYSLMOD DD DSN=&&TEMP,DISP=OLD
BIND
// act01 exec pgm=IKJEFT01
// DBRMLIB DD DSN=
SYSIN DD *
BIND PLAN( ) MEM( ) ISOLATION(CS) ACTION(REP)
RUN
// act01 exec pgm=IKJEFT01
SYSIN DD *
RUN PROG( ) PLAN( ) LOADLIB( )
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is an instance database?
How do I add a column to a table in db2?
What is the physical storage length of the data types date, time, and timestamp?
What is dbrm library?
Describe major components of db2?
What is concurrency?
What is the information associated with sysibm.syslinks table?
Define predicate?
What is the connection string to connect to the DB2 Database ?
What is the purpose of rollback and commit?
How is deadlock resolved?
Explain correlated sub-queries.
What is db2 purescale?
What is query_cache_limit?
Why do we bind in db2?