zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

oracle开启闪回

Oracle 开启 闪回
2023-09-27 14:20:53 时间

环境:

OS:Centos 7

DB:11.2.0.4

 

前提条件数据库已经开启归档模式

以下操作不需要重启数据库

alter system set db_recovery_file_dest='/u01/app/oracle/fast_recovery_area' scope=both; ##闪回文件存放位置
alter system set db_recovery_file_dest_size=8G scope=both;        ##闪回区大小
alter system set db_flashback_retention_target = 1440 scope=both; ##分钟
alter database flashback on;

 

 

--The End --