vote up 9 vote down star
2

(I've tried this in MySql)

I believe they're semantically equivalent. Why not identify this trivial case and speed it up?

flag

63% accept rate

5 Answers

vote up 22 vote down check

truncate table cannot be rolled back, it is like dropping and recreating the table.

link|flag
truncate doesn't have to add the log entries – Traingamer Dec 24 '08 at 18:54
that's right, thus the almost zero time. – ocdecio Dec 24 '08 at 18:58
vote up 17 vote down

...just to add some detail.

Calling the DELETE statement tells the database engine to generate a transaction log of all the records deleted. In the event the delete was done in error, you can restore your records.

Calling the TRUNCATE statement is a blanket "all or nothing" that removes all the records with no transaction log to restore from. It is definitely faster, but should only be done when you're sure you don't need any of the records you're going to remove.

link|flag
Doesn't this mean that if other processes/threads are acting on that table, they might get an inconsistent view? Or that it would otherwise be blocked from happening until other queries on the table were done? – Paul Tomblin Dec 24 '08 at 18:56
@Paul Tomblin: whether other processes are blocked or have an inconsistent read is going to depend on the table engine being used and any locking semantics that have been configured. – Toby Hede Dec 24 '08 at 23:40
vote up 6 vote down

Delete from table deletes each row from the one at a time and adds a record into the transaction log so that the operation can be rolled back. The time taken to delete is also proportional to the number of indexes on the table, and if there are any foreign key constraints (for innodb).

Truncate effectively drops the table and recreates it and can not be performed within a transaction. It therefore required fewer operations and executes quickly. Truncate also does not make use of any on delete triggers.

Exact details about why this is quicker in MySql can be found in the MySql documentation: http://dev.mysql.com/doc/refman/5.0/en/truncate.html

link|flag
+1 for mentioning indexes ... while it's true that there are "smart" ways of shrinking indexes during a delete, using a naive one-by-one method could be very expensive because of how you shrink a B+ tree. – Ian Varley Dec 25 '08 at 0:03
vote up 4 vote down

Your question was about MySQL and I know little to nothing about MySQL as a product but I thought I'd add that in SQL Server a TRUNCATE statement can be rolled back. Try it for yourself

create table test1 (col1 int)
go
insert test1 values(3)
begin tran
truncate table test1
select * from test1
rollback tran
select * from test1

In SQL Server TRUNCATE is logged, it's just not logged in such a verbose way as DELETE is logged. I believe it's referred to as a minimally logged operation. Effectively the data pages still contain the data but their extents have been marked for deletion. As long as the data pages still exist you can roll back the truncate. Hope this is helpful. I'd be interested to know the results if somebody tries it on MySQL.

link|flag
Correct, and there is a good article at weblogs.sqlteam.com/mladenp/archive/… which explains the differences - in SQL Server. – Cade Roux Dec 26 '08 at 3:16
vote up 0 vote down

For MySql 5 using InnoDb as the storage engine, TRUNCATE acts just like DELETE without a WHERE clause: i.e. for large tables it takes ages because it deletes rows one-by-one. This is changing in version 6.x.

see

http://dev.mysql.com/doc/refman/5.1/en/truncate.html

for 5.1 info (row-by-row with InnoDB) and

http://blogs.mysql.com/peterg/category/personal-opinion/

for changes in 6.x

link|flag

Your Answer

Get an OpenID
or

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