InterviewSolution
| 1. |
How To Handle -911 (deadlock) Error In A Db2 Program So That The Program Will Never Abend? |
|
Answer» Dead lock timeout ERROR occurs in the following case: If TWO or more programs ACQUIRED exclusive lock on the data,which may be needed for other programs without that data which can not proceed further. Solution: You can roll BACK current unit of work for one of the programs after preset time interval for deadlocks and TERMINATE that program. Dead lock timeout error occurs in the following case: If two or more programs acquired exclusive lock on the data,which may be needed for other programs without that data which can not proceed further. Solution: You can roll back current unit of work for one of the programs after preset time interval for deadlocks and terminate that program. |
|