can any body explain about plan and pakage in detail....
Answer Posted / ashish kumar
A DB2 bind is a process that builds an access path to DB2
tables.
A BIND process establishes a relationship between an APPLICATION
PROGRAM and its RELATIONAL DATA.
A plan is an executable module containing the access path logic
produced by the Db2 optimizer. It can be composed of one or
more DBRMs and packages.
The plans are available in the Catalog table SYSIBM.SYSPLAN
DB2 Bind compiles all your sql statements(dbrm) into an
executable format.
It uses DB2 Optimizer to create the better access path.
Package is the executable access path code for the sql
statements in the DBRM
Plan contains package list which is nothing but pointers to
packages.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is coalesce in db2?
What is syscat in db2?
What is deadlock in db2?
What is dbrm library?
What is the use of dclgen in db2?
What is meant by explain?
What are the bind parameters ibm db2?
Can there be more than one cursor open for any program?
Which command is used to connect to a database in DB2 ? Give the Syntax.
Differentiate between cs and rr isolation levels? Where do you specify them?
can all users have the privilage to use the sql statement select * (dml)?
Why select is not preferred in embedded sql programs?
When a COBOL-DB2 program in PRODUCTION is updating main tables and gone for long run, what have to do?
can we view the access paths created by dbrm ? how ? thx
What is the usage of open cursor command?