Truncate

Transact-SQL TRUNCATE statement transformation details

Some parts in the output code are omitted for clarity reasons.

Source code

IN -> SqlServer_01.sql
TRUNCATE TABLE TABLE1;

Translated code

OUT -> SqlServer_01.sql
TRUNCATE TABLE TABLE1;

No related EWIs.

Last updated