run sql profiller to get info who-is-what in your deadlock chain
Deadlock Detection using Profiler in SQL Server 2005
http://www.extremeexpe
more
Detect
http://msdn.micro
Main Topics
Browse All TopicsI have inherited this app -
Access adp file runs on the network, calling machines run either Access XP or 2003.
Form is bound to a table in sql 2005 express.
I have added a stored procedure to the database to insert a new row in the table.
The error I get from the .net app is as follows...
==========================
Error in calling assembly Avon Master Pleat Pack, Version=1.0.0.1, Culture=neutral, PublicKeyToken=null.
Occured in .Net SqlClient Data Provider.
__________________________
Transaction (Process ID 70) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
Description: An unhandled exception occurred during execution.
The exception was thrown due to the SQL Server returning a warning or error.
Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlE
Source Error:
.Net SqlClient Data Provider
Stack Trace:
at System.Data.SqlClient.SqlC
at System.Data.SqlClient.SqlI
at System.Data.SqlClient.TdsP
at System.Data.SqlClient.TdsP
at System.Data.SqlClient.SqlC
at System.Data.SqlClient.SqlC
at System.Data.SqlClient.SqlC
at System.Data.SqlClient.SqlC
at System.Data.SqlClient.SqlC
at DAL.MeasurementHeadersHelp
at Avon_Master_Pleat_Pack.For
Additional SQL Server Information:
__________________________
Server Name: CF-FS1\SQLEXPRESS
Error Type: 50000
Error Level: 13
Error Code: 52
Procedure Name: InsertNewMeasurementHeader
Line Number: 131
==========================
WHen making the stored procedur call to the database in the .net application, the acces application is not (to my knowledge) connected to the table performing the insert on.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
run sql profiller to get info who-is-what in your deadlock chain
Deadlock Detection using Profiler in SQL Server 2005
http://www.extremeexpe
more
Detect
http://msdn.micro
Business Accounts
Answer for Membership
by: BrandonGalderisiPosted on 2009-05-14 at 20:19:30ID: 24391989
So what's the question?
A deadlock is when two (or more) processes are blocked waiting on the other to release resources. Since each one cannot proceed until it receives the the information being locked by the other, they are deadlocked.