Can we rollback records deleted by a truncate statement?
Answers were Sorted based on User's Feedback
Answer / anand
yes,we can ROLLBACK records deleted by truncate if we had
executed BEGIN TRAN first
ex:
Begin Tran
truncate table tablename
ROLLBACK
with out "Begin Tran" you can not rollback
Is This Answer Correct ? | 18 Yes | 4 No |
Answer / mp
No, because it is a DDL.
We can only rollback DML statements, right?
Is This Answer Correct ? | 6 Yes | 9 No |
How to execute a sql statement using mssql_query()?
Explain multiserver query
What is the difference between online clustering and Offline clustering?
what is dbcc? : Sql server database administration
Which institute is best for SQL Server 2005 Training?
how many type of indexing in database?
Different Types of Functions ?
How to name query output columns in ms sql server?
What is a system database and what is a user database?
What are transactions and its controls?
what is denormalization? : Sql server database administration
What is the concept of optimization?