标签:
oracle中,truncate是不可以回滚的
SQL> select * from test;
ID NAME
---------- ----------
1
SQL> truncate table test;
Table truncated
SQL> rollback;
Rollback complete
SQL> select * from test;
ID NAME
---------- ----------
标签:
原文地址:http://blog.csdn.net/ghostliming/article/details/51302999