How to resolve deadlock issue

Answers were Sorted based on User's Feedback



How to resolve deadlock issue..

Answer / bala

Dead lock occurs when two jobs/transactions are waiting for the resources from each other and gets locked up.
Transaction A cannot proceed further until Transaction B is complete
similary Transaction B cannot proceed until Transaction A is complete.

To solve this issue, one of the transaction should be stopped for other transaction to proceed successfully.

Is This Answer Correct ?    10 Yes 1 No

How to resolve deadlock issue..

Answer / ashish

Deadlock issue you get when suppose same table is being used
by many applications. The first solution is you should wait
for a while til other users use it. or you can get the
utility thread kill by Database Administrators.

Is This Answer Correct ?    8 Yes 2 No

How to resolve deadlock issue..

Answer / akbar

Adding to the second part of Bala:
There may be involvement of multiple application in
deadlock situations and not just 2.

Is This Answer Correct ?    0 Yes 0 No

How to resolve deadlock issue..

Answer / ekalavya

USE AS MANY COMMITS IN THE PROGRAM.

Is This Answer Correct ?    0 Yes 2 No

How to resolve deadlock issue..

Answer / angoca

Try to change the isolation level. Also, always reserve the
resources in the same order:

For breakfast, first pick cereal and then milk. Do not do
the opposite (milk then cereal), and this will reduce the
deadlock occurencies. They will be block at the first ressource.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More DB2 Interview Questions

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?

3 Answers  


Explain about rct in db2?

0 Answers  


Can we delete records from view?

0 Answers  


What is a predicate?

1 Answers  


What do you mean by NOT NULL? When will you use it?

3 Answers  






What is the connection string to connect to the DB2 Database ?

0 Answers   MCN Solutions,


How would the varchar column remarks defined?

0 Answers  


How do I change the column size in db2?

0 Answers  


What is db2 instance?

0 Answers  


What is role in db2?

0 Answers  


What is a LIKE table and how is it created?

2 Answers  


What is isolation level?

4 Answers  


Categories