Lab-07-Tuning RMAN Backup Performance
Lab-07-Tuning RMAN Backup Performance
Overview
In these practices, you will monitor an RMAN backup job.
Overview
In this practice, you will monitor an RMAN backup job by using the V$SESSION_LONGOPS view.
Time Estimate
It should take approximately 10 minutes to complete this practice.
Tasks
1. Open a terminal window and log in to SQL*Plus. See Course Practice Environment:
Security Credentials for password information.
$ sqlplus system/<password>
RMAN>
3. Create a whole database backup. Proceed to step 4 while the backup operation is in
progress.
RMAN> BACKUP DATABASE;
…
Starting backup at 2019-06-21:18:52:23
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=277 device type=DISK
channel ORA_DISK_1: starting full datafile backup set
…
Finished backup at 2019-06-21:18:53:01
SQL> /
SQL> /
no rows selected
SQL>
Question: How can you use this query to determine if there is something wrong with the
backup job?
Answer: If you execute the query at intervals of 2 minutes or more and the %_COMPLETE
column does not increase, then it is likely that RMAN is encountering a problem.
5. Return to your RMAN session. After the backup completes, log out of RMAN.
RMAN> exit
…
$
6. Return to your SQL*Plus session. Log out of SQL*Plus.
SQL> exit
…
$
7. Close all terminal windows.