更改Archive Mode
首先檢查數據庫的模式 select log_mode from v$database;
其次,shutdown數據庫并開啟成mount狀態
最後,alter database archivelog或者noarchivelog
如果是從noarchive模式修改成Archive模式,另外還要配置Archive log format
alter system set log_archive_format = '%t_%s_%r.arc' scope=spfile;
同時也要設置歸檔路徑,如果設置在本地,則為
alter system set log_archive_dest_1='LOCATION=/data/xxx/arch' scope=spfile
表示歸檔到 /data/xxx/arch路徑下.
都需要重啟數據庫才能生效
檢查Archive信息
archive log list
首先檢查數據庫的模式 select log_mode from v$database;
其次,shutdown數據庫并開啟成mount狀態
最後,alter database archivelog或者noarchivelog
如果是從noarchive模式修改成Archive模式,另外還要配置Archive log format
alter system set log_archive_format = '%t_%s_%r.arc' scope=spfile;
同時也要設置歸檔路徑,如果設置在本地,則為
alter system set log_archive_dest_1='LOCATION=/data/xxx/arch' scope=spfile
表示歸檔到 /data/xxx/arch路徑下.
都需要重啟數據庫才能生效
檢查Archive信息
archive log list
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/16754036/viewspace-677542/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/16754036/viewspace-677542/