I had to delete all the rows from a log table that contained about 5 million rows. My initial try was to issue the following command in query analyzer:
delete from client_log
which took a very long time.
|
|
I had to delete all the rows from a log table that contained about 5 million rows. My initial try was to issue the following command in query analyzer: delete from client_log which took a very long time.
|
|||
|
|
|
|
Check out truncate table which is a lot faster. |
||||||
|
|
|
Yes, well, deleting 5 million rows is probably going to take a long time. The only potentially faster way I can think of would be to drop the table, and re-create it. That only works, of course, if you want to delete ALL data in the table. |
||
|
|
|
|
truncate table client_log is your best bet, truncate kills all content in the table and indices and resets any seeds you've got too. |
||
|
|
|
|
On SQL Server you can use the The drawbacks of truncate are that it can't be used on tables that are referenced by foreign keys and it won't fire any triggers. Also you won't be able to rollback the data if anything goes wrong. |
|||
|
|
|
|
I discovered the TRUNCATE TABLE in the msdn transact-SQL reference. For all interested here are the remarks: TRUNCATE TABLE is functionally identical to DELETE statement with no WHERE clause: both remove all rows in the table. But TRUNCATE TABLE is faster and uses fewer system and transaction log resources than DELETE. The DELETE statement removes rows one at a time and records an entry in the transaction log for each deleted row. TRUNCATE TABLE removes the data by deallocating the data pages used to store the table's data, and only the page deallocations are recorded in the transaction log. TRUNCATE TABLE removes all rows from a table, but the table structure and its columns, constraints, indexes and so on remain. The counter used by an identity for new rows is reset to the seed for the column. If you want to retain the identity counter, use DELETE instead. If you want to remove table definition and its data, use the DROP TABLE statement. You cannot use TRUNCATE TABLE on a table referenced by a FOREIGN KEY constraint; instead, use DELETE statement without a WHERE clause. Because TRUNCATE TABLE is not logged, it cannot activate a trigger. TRUNCATE TABLE may not be used on tables participating in an indexed view. |
||
|
|
|
|
As Rob said, truncate table is probably the best option. |
||
|
|
|
For reference TRUNCATE TABLE also works on MySQL |
||
|
|
|
|
|
||||
|
|
|
The suggestion of "Drop and recreate the table" is probably not a good one because that goofs up your foreign keys. You ARE using foreign keys, right? |
||
|
|
|
|
Note that TRUNCATE will also reset any auto incrementing keys, if you are using those. If you do not wish to lose your auto incrementing keys, you can speed up the delete by deleting in sets (e.g., DELETE FROM table WHERE id > 1 AND id < 10000). It will speed it up significantly and in some cases prevent data from being locked up. |
||
|
|
|
|
I am revising my earlier statement:
The above statement was intended to prompt you to be sure that you understand there is difference between the two. Unfortunately, it is poorly written and makes unsupported statements as I have not actually done any testing myself between the two. It is based on statements that I have heard from others. From MSDN:
I just wanted to say that there is a fundamental difference between the two and because there is a difference, there will be applications where one or the other may be inappropriate. |
|||
|
|
|
|
There is a common myth that TRUNCATE somehow skips transaction log. This is misunderstanding, and is clearly mentioned in MSDN. This myth is invoked in several comments here. Let's eradicate it together ;) |
||
|
|
|
If you cannot use TRUNCATE TABLE because of foreign keys and/or triggers, you can consider to:
This may speed up DELETE somewhat. |
||
|
|
|
|
forget truncate and delete. maintain your table definitions (in case you want to recreate it) and just use drop table. |
||
|
|
|
|
I use the following method to zero out tables, with the added bonus that it leaves me with an archive copy of the table.
|
||
|
|
|
|
Premature optimization may be dangerous. Optimizing may mean doing something weird, but if it works you may want to take advantage of it.
For speed I think it depends on...
There may be deletion rules. Is there an existing procedure to delete all content in the table? Can this be optimized for the specific underlying database engine? How much do we care about breaking things / related data? Performing a DELETE may be the 'safest' way assuming that other related tables do not depend on this table. Are there other tables and queries that are related / depend on the data within this table? If we don't care much about this table being around, using DROP might be a fast method, again depending on the underlying database.
How many rows are being deleted? Is there other information that is quickly gleaned that will optimize the deletion? For example, can we tell if the table is already empty? Can we tell if there are hundreds, thousands, millions, billions of rows? |
||
|
|