Oracle歸檔日志相信大家都不會陌生,下面就為您介紹Oracle歸檔日志大小的修改方法,希望對您學習Oracle歸檔日志方面能夠有所幫助。
方法:加入新的大的日志文件,然後刪掉舊的小的日志文件
假設現有三個日志組,每個組內有一個成員,每個成員的大小為1MB,現在想把此三個日志組的成員大小都改為10MB
1、創建2個新的日志組
- alter database add logfile group 4 ('D:\Oracle\ORADATA\ORADB\REDO04_1.LOG') size 1024k;
- alter database add logfile group 5 ('D:\Oracle\ORADATA\ORADB\REDO05_1.LOG') size 1024k;
2、切換當前日志到新的日志組
- alter system switch logfile;
- alter system switch logfile;
3、刪除舊的日志組
- alter database drop logfile group 1;
- alter database drop logfile group 2;
- alter database drop logfile group 3;
4、操作系統下刪除原日志組1、2、3中的文件
5、重建日志組1、2、3
- alter database add logfile group 1 ('D:\Oracle\ORADATA\ORADB\REDO01_1.LOG') size 10M;
- alter database add logfile group 2 ('D:\Oracle\ORADATA\ORADB\REDO02_1.LOG') size 10M;
- alter database add logfile group 3 ('D:\Oracle\ORADATA\ORADB\REDO03_1.LOG') size 10M;
6、切換日志組
- alter system switch logfile;
- alter system switch logfile;
- alter system switch logfile;
7、刪除中間過渡用的日志組4、5
- alter database drop logfile group 4;
- alter database drop logfile group 5;
8、到操作系統下刪除原日志組4、5中的文件
9、備份當前的最新的控制文件
- SQL> connect internal
- SQL> alter database backup controlfile to trace resetlogs