Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Backup - Archivelog Files

Back


Lab: Back up the archive log files and delete the files after the backup completes.

run {
    ALLOCATE CHANNEL "chl" DEVICE TYPE DISK FORMAT "/home/oracle/backup/orcl/%U";
    BACKUP ARCHIVELOG ALL DELETE ALL INPUT;
}

lab_backup_archivelog


TOP