0% found this document useful (0 votes)
28 views1 page

Enable Flashback and Create Restore Point

Enable flashback on the database and create a restore point to allow restoring the database to a specific point in time. Verify that the restore point was successfully created by querying the v$restore_point view and checking for the restore point name, SCN, time, and guarantee flashback database attribute.

Uploaded by

Jabras Guppies
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

Enable Flashback and Create Restore Point

Enable flashback on the database and create a restore point to allow restoring the database to a specific point in time. Verify that the restore point was successfully created by querying the v$restore_point view and checking for the restore point name, SCN, time, and guarantee flashback database attribute.

Uploaded by

Jabras Guppies
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

ENABLE FLASHBACK AND CREATE A RESTORE POINT

** Need SYSDBA privilege to perform this process. **


1.

Enable flashback on the database.


SQL> alter database flashback on;
Database altered.

2.

Create a test restore point.


SQL> create restore point testing_starts guarantee flashback
database;
Restore point created.

3.

Verify restore point created.


SQL> select name, scn, time, guarantee_flashback_database from
v$restore_point;
NAME
-------------------------------------------------------------------------------SCN
---------TIME GUA
---------------------------------------------------------------------------
TESTING_STARTS
42033862
08-MAY-12 01.37.30.000000000 PM YES

You might also like