vote up 2 vote down star

I have a table containing hundreds of entries and I am trying to delete a small range. It is taking a long time, in fact it is not being executed.

I monitored the query from the activity monitor and its status is "Suspended"

Is there anyone knows what may cause this problem?

flag

76% accept rate

2 Answers

vote up 1 vote down check

What's the SQL you're running? Any triggers on the table, or any cascaded deletes to tables that have triggers on? Anything in the "Blocked By" column or Wait Type?

Try executing the following in management studio (on the database in question):

dbcc checkdb
dbcc checkcatalog
link|flag
SQL Server 2005 & No Triggers – David Bonnici Jan 5 at 8:52
Sorry, I meant the SQL statement :-) – Steven Robbins Jan 5 at 8:53
delete from tbl_obejcts where objectname < 450 - (Only 450 Records) – David Bonnici Jan 5 at 8:57
Blocked by = 0 and Wait Type = PAGIOLATCH_SH – David Bonnici Jan 5 at 9:00
What about the Blocked By and Wait Type columns in activity monitor? Usually things only go suspended if they are waiting for I/O or there is an explicit wait clause in the SQL. – Steven Robbins Jan 5 at 9:01
show 3 more comments
vote up 0 vote down

Depending on the size of your database and the number of constraints that have to be checked when deleting a row, deletes can take a very, very long time. I never delete more than one row at a time from my databases. It's just too resource-intensive on the system. This is one of the few places where a cursor, or an iteration in non-database code (C#, Java, whatever) can beat a set-based query. I even put a small delay of a few milliseconds between deletes to make sure nothing gets locked up for too long. You can bring a database to its knees by deleting a range of data from a table.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.