TONG BIN$8NsWmNwAEmLgQAICcgIUNA==$0 TABLE 2014-01-26:14:56:19
SQL> select * from t1; --表不存在
select * from t1
*
ERROR at line 1:
ORA-00942: table or view does not exist
SQL> flashback table t1 to before drop; --恢复t1表和表中的数据(flashback table t1 to before drop rename to t2 --恢复重命名表)
SQL> select * from t1;
A
----------
2
SQL>