what are stage one indexable predicates?



what are stage one indexable predicates?..

Answer / yuvaevergreen

Indexable predicates are the one which match with index
entries. It depends on the indexes that are available and
the access path chosen at bind time.
For example,if the employee table has an index on the
column LASTNAME,
the following predicate can be a matching predicate:
SELECT * FROM emp WHERE LASTNAME = 'SMITH';
Stage 1 predicates are the predicates which are processed
by Data
manager component of DB2 as soon as it recieves data from
the buffer manager.
Some examples are:
COL BETWEEN value1 AND value2
COL IN (list)
COL LIKE host variable
more examples:
http://publib.boulder.ibm.com/cgi-bin/bookmgr/
BOOKS/dsnapj12/6.3.3.2?
DT=20050328013405#TBLISARG

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More DB2 Interview Questions

How to resolve -805 error in DB2?

1 Answers   Cap Gemini,


What is the difference between cursor stability and repeatable read isolation levels?

0 Answers  


what is the responsibility of the construction superintendent

0 Answers   Almco,


What are the full forms of spufi and dclgen and why are they used?

0 Answers  


What happens to a cursor after a commit?

3 Answers  






Explain what are the various isolation levels possible?

0 Answers  


WHAT IS MEANT BY COMMIT COMMAND?

7 Answers   Wipro,


The only place of VSAM KSDS in DB2 is?

2 Answers   IBM,


Mention data types used in db2 ?

0 Answers  


I have a subprogram B calling from mainprogram A.I have opened a cursor in A ,Can i fetch the same cursor in subprogram B , If yes , Please explain the reason?

0 Answers   HeadStrong,


How is deadlock resolved?

0 Answers  


What is bind package and plan in db2?

0 Answers  


Categories