Schedule Database Backup Job on Linux
1. Make Backup Script Having following Task: a. T hat will make File Name (unique - by taking current system time) b. Then Export Database with Log having system generated File Name as Above c. Then Zip These DMP and LOG file with Password d. Remove DMP & LOG, to release Space. e. Move ZIP file to Remote Location (NAS Drive/Backup Directory having FTP Enabled) ------------------------------------------------------------------------------------------------------------------------------ #BackupScript.sh . /home/oracle/scripts/setEnv.sh filename=$( date +%d%m%Y_%H%M) BACKUP_DIR="/u02/backup" expdp user/pa...