can any body explain about plan and pakage in detail....

Answers were Sorted based on User's Feedback



can any body explain about plan and pakage in detail......

Answer / 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

can any body explain about plan and pakage in detail......

Answer / srinivasa gudla

A package is single bound DBRM with optimized access paths.
It contains location identifier, collection Identifier and
package identifier.

A package can have multiple versions, each with it's own
version identifier

Advantages of Packages,
Reduce the Bind Time.
Versioning.
Can provide BIND options at programmer level.

As Ashish mentioned above, Plan contains packages list which
is nothing but Pointers. whenever you are doing changes in
SQL staetments related to particular DBRM . Then only that
particular Packages needs to be rebind not the Plan. This is
similar to recompiling a sub program not the main program.

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More DB2 Interview Questions

what is static sql? what is dynamic sql? Give me details

3 Answers  


How to fetch the last row from the table in SQL (db2)?

0 Answers  


Define data page.

0 Answers  


Suppose if I need to update a column, how you do that using cursor?

2 Answers   Verizon,


Mention some fields that are a part of sqlca.

0 Answers  






what is REORG? what is the use?

4 Answers  


What is DB2 (IBM Database 2)?

3 Answers  


What do you need to do before you do EXPLAIN?

1 Answers  


What else is there in the PLAN apart from the access path?

1 Answers  


what is db2 restart?

0 Answers  


What is access path in db2?

0 Answers  


How can the duplicate values be eliminated from db2 select?

0 Answers  


Categories