标签:
1 Select a.sequence#, b.sequence#, a.first_time, b.first_time, 2 round((a.first_time-b.first_time)*60*60*24,2) timeInterval 3 from v$log_history a 4 left join v$log_history b 5 on a.sequence#=b.sequence#+1 and a.thread#=b.thread#
(Oracle建议日志文件切换时间为20分钟,调整日志文件大小以改变这一时间)
调整日志文件大小只能通过,创建新的日志文件组,切换日志文件组,删除旧的日志文件组的方式进行。
创建日志文件组
1 alter database add logfile group 4(‘D:\redo4.log’) size 1024M reuse;
查看日志文件组状态切换日志文件组
1 select group#, status from v$log;
删除日志文件组(切换至INACTIVE状态再进行删除)
alter database drop logfile group 1;
标签:
原文地址:http://www.cnblogs.com/wangnfhy/p/4770940.html