I am testing my application I need some code that stable simulates the deadlock on database site (sql script if possible).
Thank you.
ADDED:
|
I am testing my application I need some code that stable simulates the deadlock on database site (sql script if possible). Thank you. ADDED: |
|||||
|
|
The best way would be to use tables you already have. Create two tables -- table-a, table-b For a test you can even update the same column with the same information so you don't affect any real data. For instance UPDATE table_a set ID = ID where ID = 100; Open two sessions to the same database. On one, run
On two run
Then, copy the update statements to the opposing sessions and run at the same time. In one,
In two
I just tried this now and got on MS-SQL
|
|||||
|
|
|
Use the sp_getapplock system stored procedure to take what ever locks to need on your sample code. |
|||||||
|