Deletes all rows from a table or materialized view without deleting the table definition.
Syntax 1
TRUNCATE TABLE [ owner.]table-name | MATERIALIZED VIEW owner.] materialized-view-name
Syntax 2
TRUNCATE TABLE [ owner .]table [ PARTITION partition-name | SUBPARTITION subpartition-name ]
TRUNCATE is equivalent to a DELETE statement without a WHERE clause, except that each individual row deletion is not entered into the transaction log. After a TRUNCATE TABLE statement, the table structure and all of the indexes continue to exist until you issue a DROP TABLE statement. The column definitions and constraints remain intact, and permissions remain in effect.
The TRUNCATE statement is entered into the transaction log as a single statement, like data definition statements. Each deleted row is not entered into the transaction log.
For both temporary and base tables, you can execute TRUNCATE TABLE while other users have read access to the table. This behavior differs from SQL Anywhere, which requires exclusive access to truncate a base table. SAP Sybase IQ table versioning ensures that TRUNCATE TABLE can occur while other users have read access; however, the version of the table these users see depends on when the read and write transactions commit.