Technote (troubleshooting)
Problem(Abstract)
This document explains how to debug a DB2 LOCKTIMEOUT- SQL0911N RC68, using a db2cos.rpt file.
Symptom
SQL0911N The current transaction has been rolled back because of a deadlock or timeout.
Reason code "68". SQLSTATE=40001
The symptoms for a LOCKTIMEOUT may include the following:
- Applications receive SQL0911N RC68
- Infrequent commits within Unit Of Works leading to locking issues with the database
- Snapshot for applications show that several applications are in lock-wait mode
Resolving the problem
In most cases, DB2 LOCKTIMEOUT is caused due to the way the applications were developed. DB2 uses Cursor Stability as the default isolation level and its recommended that you review the lock-type compatibility in the below link when developing/coding your applications.
DB2 V9.1 Lock Type Compatibility Table
| AIX/Solaris/Linux/HP-UX/Windows |
In the db2cos.rpt you will find valuable information on the transactions that actually timed out due to a lock-wait situation and also the erring dynamic SQL statements.
For example:
In the following section of the db2cos.rpt report, you can match the lock-wait status (indicated with W*) to a transaction handle; which can then be matched with the application handle and AnchId/StmtUID; leading to the dynamic statement section showing us the SQL statements that caused the lock-time outs. From this report we can see that a select statement is requesting for a NS lock while an insert statement is holding an X lock on the same row in table TEST. From the lock type compatibility table we know that an X lock is not compatible with a NS lock and hence the lock timeout occurred.
If you need further assistance with debuging a db2cos.rpt report, please contact DB2 Support at 1-800-IBM-SERV
Related information
Collecting Data for Lock Timeouts
Monitoring and troubleshooting using db2pd
Rate this page:
Copyright and trademark information
IBM, the IBM logo and ibm.com are trademarks of International Business Machines Corp., registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at www.ibm.com/legal/copytrade.shtml.