Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Basic DB2 question from a novice 1

Status
Not open for further replies.

widowweeds

Programmer
Oct 29, 2002
14
IE
Dear Members,

Can anybody detail for me the whole pre-compile, compile, link and bind process?

Thanks in advance for any assistance given.
 
Hi again WW,

Pre-compile: trails thru source code adding calls to the actual DB2 elements. Produces updated source code and DBRM

Compile: trails thru updated source code and creates object module with timestamp

Link: takes object module and creates a callable load module.

Bind: Takes statements from DBRM, validates them (usually) and writes the output to SYSIBM tables under a PLAN or PACKAGE.

When running program under DB2, load module and PLAN or PACKAGE are specified and these must match up.

Hth

Marc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top