Can we classify/say that TRUNCATE belongs to/falls under DML statement?

Check here for PostgreSQL TRUNCATE compatibility.

NOTE: TRUNCATE is part of SQL standard ANSI SQL 2008 - F200

link|improve this question

59% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I would say it's a DML statement in PostgreSQL: PostgreSQL has a TRUNCATE trigger but PostgreSQL doesn't have DDL triggers. So it can't be a DDL statement.

It acquires an ACCESS EXCLUSIVE lock on each table it operates on and it's not MVCC-safe but it's transactionsafe and you can do a rollback.

The ability to fire triggers for TRUNCATE is a PostgreSQL extension of the SQL standard.

link|improve this answer
May be this is off-topic from my original question, is it a DDL statement in Oracle? Any ideas/comments? – Gnanam Sep 1 '10 at 6:13
You should ask an Oracle DBA, I don't have an opinion about it: lack of knowledge. – Frank Heikens Sep 1 '10 at 6:42
orafaq says it's DDL: orafaq.com/faq/… – Frank Heikens Sep 1 '10 at 6:48
Thanks for sharing that link. So based on what I've understood from here, can we say that classification of TRUNCATE statement as DDL or DML would be mainly decided based on the factor that whether the transaction is allowed to ROLLBACK or not? – Gnanam Sep 2 '10 at 10:13
It depends on your database, there is not a single correct answer, DDL and DML are both correct: DDL in Oracle, DML in PostgreSQL. ROLLBACK can be used for almost everything in PostgreSQL, almost everything is transaction safe. – Frank Heikens Sep 2 '10 at 11:28
feedback

As TRUNCATE manipulates data and does not change any definition, I clearly see it as a DML statement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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