What is lock contention?
Answer / s
Lock contention occurs when an application program is
trying to acquire a lock that is held by another
application program.
| Is This Answer Correct ? | 0 Yes | 0 No |
How will fetch last 5 rows from table in db2
What is a PLAN table? How will you use it? Give the various fields of PLAN table?
can any one provide me the link for the db2 v7 & db2 v8 manual for Z/os? i need to know about the syntax of REORG in both versions & need to know the difference as well
When Can you be sure that a query will return only one row?
What does the RUNSTATS Utility do?
What is node in db2?
In cobol+DB2program if the code of cobol program has changed than i have to do precompilation once again?
What is a DBRM, PLAN ?
how to delete perticular row from table for ex. how you will delete 3rd row from table please answer THANKS IN ADVANCE
What are leaf pages?
How do you leave the cursor open after issuing a COMMIT? (for DB2 2.3 or above only)
1) I have 3 programs : PGMA, PGMB, PGMC. PGMA calls PGMB and PGMB calls PGMC. I have to do inserts, updates in all the 3 pgms. 2) Say PGMC has done its work successfully and returned to PGMB 3) PGMB had an SQL error while doing some update 4) PGMA has already done some updates before calling PGMB all are running under the same CICS region. What will happen if I issue SYNCPOINT ROLLBACK in PGMB when it abends ? Does all the changes in PGMA,B,C rollback ? (because all the pgms belong to same task).