HOME JCL COBOL DB2 VSAM CICS


DB2 Interview Questions

21. What are some of the main fields in SQLCA?
Major fields in SQLCA are SQLCODE, SQLERRM, and SQLERRD.

22. What is meant by EXPLAIN?
EXPLAIN is used for displaying the access path as determined by the optimizer for SQL statements. It can also be used in the case of SPUFI for single SQL statements or in the BIND step for Embedded SQL.

23. How to perform EXPLAIN for any Dynamic SQL statement?
Users can use SPUFI or QMF statements to perform EXPLAIN for Dynamic SQL statements. They can also include the EXPLAIN command in the Embedded Dynamic SQL statements.

24. What are the isolation levels possible?
Two isolation levels are possible: One is Cursor Stability and the other is Repeatable Read denoted as CS and RR, respectively.

25. What is the difference between CS and RR isolation levels?
CS would release the lock on the page after its use. RR would retain all the locks acquired till the end of a transaction.

26. What is meant by Lock Escalation?
Lock escalation is the process of promoting page lock sizes to table or table space lock size when the transaction has acquired more locks than the ones specified in NUMLKTS. Locks have to be taken on objects in a single table space for escalations to take place.

27. What are the various types of Locks?
here are three different types of locks: SHARE, EXCLUSIVE, and UPDATE.

28. What is ALTER?
ALTER is the SQL command used to change the definition of DB2 objects.

29. What do you understand by DBRM and PLAN?
DBRM denotes Database Request Module. It has the SQL statements that are extracted from the host language program obtained by the pre-compiler; PLAN is the result of the BIND process and has executable code for SQL statements in DBRM.

30. What is meant by ACQUIRE/RELEASE in BIND?
ACQUIRE/RELEASE in BIND determines the point at which DB2 either acquires or releases locks against the table and the table spaces. This includes the intent locks.

1 2 3 4 5
Copyright 2020 by ibmmainframer. All Rights Reserved.