Oracle
10G New Feature regenerate dropped table
To flash back a table to an earlier SCN or timestamp, you must have either the FLASHBACK object privilege on the table or the FLASHBACK ANY TABLE system privilege. In addition, you must have the SELECT, INSERT, DELETE, and ALTER object privileges on the table. Row movement must be enabled for all tables in the Flashback list. Please refer to row_movement_clause for information on enabling row movement. To flash back a table to before a DROP TABLE operation, you need only the privileges necessary to drop the table.
01.
Your database is to be archivelog mode
EMPNO 14 rows selected. SQL> drop table employee; Table dropped. SQL>
select empno from employee;
Flashback complete. SQL>
connect scott/tiger@kans10g
EMPNO 14
rows selected. |