Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I plan to delete an entire table with over 930,000 rows of data. Which is the best way to do it without increasing the Log size or increasing the DB size.

I am on a live site and my hosting has given me 150 MB of space..I am already using 125 MB and hence need to be careful of the DB size since increase in log will increase the size of my DB

share|improve this question

2 Answers

up vote 8 down vote accepted

If you do not wish or need to fully log the deletion activity(i.e. you do not need to be able to recover your database to a specific point in time) then you can flush/deallocate the contents of the table by using the TRUNCATE TABLE command.

If on the other hand you wish to log the event fully then you should delete the data in batches in order to maximise performance, see the following article for details on how to do this:

Performing Fast SQL Server Delete Operations

share|improve this answer
that did it...thanks..How do I reclaim the space..the db still shows the same size..i thought it would reclaim atleast 25 MB of space when I truncated the table – lols Jun 27 '09 at 11:32
Ok..I did SHRINKDATABASE and that did it :) – lols Jun 27 '09 at 11:34
Good stuff. Let me know if you need any further assistance. – John Sansom Jun 27 '09 at 11:55

use truncate table.

share|improve this answer
thanks for answering – lols Jun 27 '09 at 11:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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