Archive log Backup Command
In this blog, We will see the archive log backup command.
oracle configurationintermediate
by OracleDba
13 views
In this blog, We will see the archive log backup command.
123456789101112131415
list archivelog all;
list copy of archivelog until time 'SYSDATE-1';
list copy of archivelog from time 'SYSDATE-1';
list copy of archivelog from time 'SYSDATE-1' until time 'SYSDATE-2';
list copy of archivelog from sequence 2000;
list copy of archivelog until sequence 3000;
list copy of archivelog from sequence 2000 until sequence 3000;
delete archivelog all;
delete archivelog until time 'SYSDATE-1';
delete archivelog from time 'SYSDATE-1';
delete archivelog from time 'SYSDATE-1' until time 'SYSDATE-2';
delete archivelog from sequence 2000;
delete archivelog until sequence 3000;
delete archivelog from sequence 2000 until sequence 3000;Please to add comments
No comments yet. Be the first to comment!