Default: none
Enables you to specify a timestamp. Export finds the SCN that most closely matches the specified timestamp. This SCN is used to enable flashback. The export operation is performed with data consistent as of this SCN.
You can specify the time in any format that the DBMS_FLASHBACK
.ENABLE_AT_TIME
procedure accepts. This means that you can specify it in either of the following ways:
> exp FILE=exp.dmp FLASHBACK_TIME="TIMESTAMP '2006-05-01 11:00:00'" > exp FILE=exp.dmp FLASHBACK_TIME="TO_TIMESTAMP('12-02-2005 14:35:00', 'DD-MM-YYYY HH24:MI:SS')"
Also, the old format, as shown in the following example, will continue to be accepted to ensure backward compatibility:
> exp FILE=exp.dmp FLASHBACK_TIME="'2006-05-01 11:00:00'"
Oracle Database Backup and Recovery User's Guide for more information about performing flashback recovery
Oracle Database PL/SQL Packages and Types Reference for more information about the DBMS_FLASHBACK
PL/SQL package