Oracle Rman

HARNESSING BLOCK CHANGE TRACKING FOR ENHANCED PERFORMANCE

Block changing tracking improves the performance of incremental backups by recording changed blocks in the block change tracking file. During an incremental backup, instead of scanning all data blocks to identify which blocks have changed, RMAN uses this file to identify the changed blocks that need to be backed up. TO ENSURE THE CURRENT PERFORMANCE OF INCREMENTAL BACKUPS: SQL>  select SESSION_KEY, INPUT_TYPE, STATUS, to_char(START_TIME,’mm/dd/yy hh24:mi’) start_time, to_char(END_TIME,’mm/dd/yy hh24:mi’) end_time, elapsed_seconds/3600 hrs from V$RMAN_BACKUP_JOB_DETAILS order by session_key; The above command will show the performance of daily incremental backups. i.e., How many hours the database backup is running before enabling the block change tracking. TO ENSURE THE BLOCK CHANGE TRACKING IS ENABLED IN THE DATABASE: SQL> select status, filename from v$block_change_tracking; It will show the block change tracking is enabled in our database or not. If it shows disabled, we want to enable the parameter by issue the below command. SQL> alter database enable block change tracking; NOTE:- After enables the BLOCK_CHANGE_TRACKING, wait for a day to complete the database backup. Then issue the above command to ensure the incremental backup performance. It will show you the positive differences compares to the earliest performance.

Read More

RMAN Issues and Solutions – (ORA-00020) and (ORA-00245)

RMAN Issues and Solutions – (ORA-00020) and (ORA-00245)   Error-1: RMAN failed to connect target database with ORA-00020: maximum number of processes (150) exceeded   Solution: Here, we can see…

Read More

RESTORE USING RMAN TO CREATE ORACLE 12C DATABASE ON SCRATCH SERVER

RESTORE USING RMAN TO CREATE ORACLE 12C DATABASE ON SCRATCH SERVER Overview Following is the scenario, All the hard drives of the production server have been damaged and we have…

Read More

REFRESH STANDBY USING INCREMENTAL(SCN BASED) BACKUP

REFRESH STANDBY USING INCREMENTAL(SCN BASED) BACKUP This method is used to resolve problems if a physical standby database has lost or corrupted archived redo data or has an unresolvable archive…

Read More

Block change tracking for faster Incremental RMAN backups

Posted by : Unknown   Introduction  This Post demonstrates about the Block change tracking for faster Incremental RMAN backups   Block Change Tracking The details of changes in the blocks…

Read More

ORA-10873: file 1 needs to be either taken out of backup mode or media recovered

Posted by : Saravanan   Introduction This Post demonstrates about ORA-10873 , the file 1 needs to be either taken out of backup mode or media recovered Scenario : Database went…

Read More

RMAN-06613: Connect identifier for DB_UNIQUE_NAME DBNAME_DGS not configured

Posted by : Sundaravel Ramasubbu   RMAN-06613: Connect identifier for DB_UNIQUE_NAME DBNAME_DGS not configured   This Post demonstrates the Rman backup is failed with the error RMAN-06613: Connect identifier for…

Read More

ORA-17502: ksfdcre:4 Failed to create file “FILE NAME” / ORA-15173: entry ‘string’ does not exist in directory ‘string’

Posted by : Mahe    ORA-17502: ksfdcre:4 Failed to create file “FILE NAME” / ORA-15173: entry ‘string’ does not exist in directory ‘string’ RMAN> restore spfile from ‘+FRA/SRPRIMT/AUTOBACKUP/2016_07_10/s_788290484.315.788290487’; Starting restore at 10-JUL-16 using…

Read More

DBA Tip : RMAN restore when backup file are spread across 2 different mount points

Posted by Hemanth Sathavalli  Introduction: Customers whose databases are of huge size and if the RMAN backup size is about 2TB or more and when there is no enough space to…

Read More

How to Check or Validate The RMAN Backups

Step 1: The below command just gives the report of backups that are used to do the  restore and recover : RMAN> run { set until time “to_date(‘2016-24-10:9:00:00′,’yyyy-dd-mm:hh24:mi:ss’)”; restore database…

Read More