欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

oracle数据库在onlne redo丢失的情况下,恢复时两个重要的参数

程序员文章站 2023-03-22 17:03:50
SQL> alter system set “_ALLOW_RESETLOGS_CORRUPTION”=true scope=spfile; SQL...

SQL> alter system set “_ALLOW_RESETLOGS_CORRUPTION”=true scope=spfile;

SQL> alter system set “_allow_terminal_recovery_corruption”=true scope=spfile;

SQL> startup mount;

SQL> recover database until cancel;

SQL> alter database open resetlogs;

尤其适用在 onlne redo 丢失的情况下。