I know people ask all day how do they backup Oracle or help with 'Rman' utility however I'm trying to follow
this and it advises me to set the two variables before I use 'rman':
1. Create a Fast/Flash recovery area:
Code:
Alter system set db_recovery_file_dest=’/u01/app/oracle/backup’;
Now when I attempt this, I don't know where to enter this command but assume it's in either SQLPlus* or RMAN utility. They appear to be SQL statements so I know I don't run them in the bash shell, right? Anyone know how I do this?
2. Set the recovery size quota for the backup:
Code:
Alter system set db_recovery_file_dest_size=2G;
I'm not clear where or how I should be configuring these parameters before I use the RMAN utility. Can someone please clear this up for me? Sorry I'm very green to Oracle so I'm trying my best.