#!/bin/bash
source /home/oracle/.bash_profile
rman target / msglog=/data/delete_arch.log append << EOF
run {
delete noprompt archivelog until time 'sysdate-7';
}
exit;
EOF
#!/bin/bash
source /home/oracle/.bash_profile
rman target / msglog=/data/delete_arch.log append << EOF
run {
delete noprompt archivelog until time 'sysdate-7';
}
exit;
EOF