How to check sequence on a table in db2?
No Answer is Posted For this Question
Be the First to Post Answer
Suppose we have a query for update update table1 set col1 = 'val1' where col2=(select .... from ...) suppose the subquery does not return any record, what will happen to update?
What is the significance of DB2 free space and what parameters control it?
What is deadlock?
What is the difference between a package and a plan?
6 Answers Infosys, L&T, Mphasis,
which SQL comment successfully removes uncommitted changes from a DB2 database A) rollback B) delete C) drop D) decommit
List out the buffer pools in db2
While creating a table, by mistake you have given size of one field as 10. But as per requirement size should be 8. What is your next step?
How to restart a DB2 program?
What action db2 takes when a program aborts in the middle of a transaction?
What is the use of commit in db2?
What is meant by concurrency?
in the CURSOR declare statement, if i am using an where clause and trying to compare the value with a host-varialble. EXEC SQL DECLARE C1 CURSOR FOR SELECT DEPTNO, DEPTNAME, MGRNO FROM DEPARTMENT WHERE ADMRDEPT = :ADM-DEPT Where would i need to provide value to this host-variable in the where clause. how could i pass value to this host-variable to check it.