Needing to restore a controlfile
I've managed to screw up the controlfile by adjusting the SGA/PGA memory and now the Enterprise Manager wants to restore a backed up control file. I have found one in the flash_recovery_area, although this may be the one that is bad. We have been doing backups, and the last backup should have a control file with it. I just don't know how to use RMAN to get a listing of how the backup is configured. The shell scripts are:
full_cold_backup.sh:
#!/bin/bash
export ORACLE_SID=xplr
. /home/oracle/.bash_profile
rman 'target /' @/home/oracle/bin/full
full_cold_backup.sh:
#!/bin/bash
export ORACLE_SID=xplr
. /home/oracle/.bash_profile
rman 'target /' @/home/oracle/bin/full
0