When I execute this simple SQL Delete statement, I get a timeout from SQL Server:
DELETE FROM dbo.[User] WHERE Id = 95146
The table contains about 95,000 entries.
I thought this might be due to the indices in the table, so I deleted everything except the main (Id) cluster, but that didn't help.
I deleted all statistics that I created, but also without any effects.
What else can I do to optimize for this?
Regards, David
sql sql-server sql-server-2008 timeout
dgivoni
source share