What are the rules for db2 programming?
What is index cardinality?
how do you resolve -805?
Cursors can be declared in both working-storage & procedure division, Agreed. But is there any difference? If could you please suggest what is the difference. TIA
What is netezza database?
What is a dbrm in db2?
when we are trying to update db2 rows. if the program abends . how we will know that the last successful update row was
How does the processing of a correlated subquery differ from a non correlated subquery?
How can you get the number of rows impacted by the last executed query?
I need to view the number of tables existing under one particular Owner. Is it possible? If so, pl give the SQL query for this?
how to take the back up of the DB2 table.
How can you validate Sql errors during cursor operation in db2 pgms and where do you code?
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.