ORA-38706: Cannot turn on FLASHBACK DATABASE logging.
Dear all ,
If you have this error during trying to enable flashback database,
SQL> alter database flashback on;
alter database flashback on
*
ERROR at line 1:
ORA-38706: Cannot turn on FLASHBACK DATABASE logging.
ORA-38707: Media recovery is not enabled
alter database flashback on
*
ERROR at line 1:
ORA-38706: Cannot turn on FLASHBACK DATABASE logging.
ORA-38707: Media recovery is not enabled
Here is a solution
SQL> alter database archivelog;
Database altered.
SQL> alter database flashback on;
Database altered.
Comments
Post a Comment