Tagged Questions
3
votes
3answers
3k views
DELETE Statement hangs on SQL Server for no apparent reason
Edit: Solved, there was a trigger with a loop on the table (read my own answer further below).
We have a simple delete statement that looks like this:
DELETE FROM tablename WHERE pk = 12345
This ...