hello,
Actually I have one stored procedure containing all delete statements...
I got an error of transaction deadlock in some cases....
not everytime...
So plzz help me to avoid this issue...
Ratika Tamboli
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pankaj PandeyPosted May 17, 2013, 5:14 AM
you can use nolock condition in your statement where you select data for delete.
it avoid deadlock condition
syntax...
select * from table with (nolock)
thanks
mark as answered if helpfull