Post ur answers here..
Regards,
Satheesh
The user who can DELETE rows does not mean they can TRUNCATE the table.
By default, they need at least DDL_ADMIN to do that and delete triggers
are not fired when using TRUNCATE.
Regards,
Satheesh
If your table have identity column.And that table contains 5 rows (identity column value = 1...5)now if you use DELETE statement to remove all rows and then try to INSERT a row , the identity column value = 6
but if you use TRUNCATE statement to remove all rows and then try to INSERT a row , the identity column value = 1