码迷,mamicode.com
首页 > 其他好文 > 详细

如何处理日志文件丢失

时间:2018-02-24 17:54:15      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:日志文件   ACTIVE   current   INACTIVE   

select group#,members from v$log;

查看日志文件的状态

select  group#,status from v$log;

有状态来决定执行步骤

status:
    active
            alter system checkpoint;
            alter database clear logfile group <group#>
    
    inactive,unused
            alter database clear logfile group <group#>
            
    current
            alter system switch logfile;
            alter system checkpoint;
            alter database clear logfile group <group#>


如何处理日志文件丢失

标签:日志文件   ACTIVE   current   INACTIVE   

原文地址:http://blog.51cto.com/10579005/2072677

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!