「Oracle」アーカイブログファイルを削除する方法
操作方法
1.RAMANを起動
rman target /
2.全てのアーカイブログを削除
delete archivelog all;
3.指定日数のアーカイブログを削除
例 20日以前のアーカイブログを削除
delete archivelog until time 'sysdate -20’
Coding Changes the World
操作方法
1.RAMANを起動
rman target /
2.全てのアーカイブログを削除
delete archivelog all;
3.指定日数のアーカイブログを削除
例 20日以前のアーカイブログを削除
delete archivelog until time 'sysdate -20’