RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar

Size: px
Start display at page:

Download "RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar"

Transcription

1 RMAN Recovery Manager BACKUP & RECOVERY Veeratteshwaran Sridhar

2 Why Backup & Recovery? The purpose of a backup and recovery strategy is to protect the database against data loss and reconstruct the database after data loss. RMAN Backup Hello Boss, Hello Database Boss..!!!Database is Recovering Recovered!!! Crash

3 Oracle Backup and Recovery Techniques RMAN Recovery Manager User Managed Backup EXP / EXPDP and IMP / IMPDP Export Backup

4 What is RMAN Recovery Manager It is an Oracle Utility that performs backup and recovery tasks on your databases and automates administration of your backup strategies. It greatly simplifies backing up, restoring, and recovering database files. It is a feature of the Oracle database server and does not require separate installation.

5 Question? In Which version of Oracle RMAN Introduced? Oracle 7 Oracle 8 Oracle 9 RMAN (Recovery Manager) is a backup and recovery manager supplied for Oracle databases (from version 8) created by the Oracle Corporation. It provides database backup, restore, and recovery capabilities addressing high availability and disaster recovery concerns.

6 RMAN - Evolution RMAN (Recovery Manager) is a backup and recovery manager supplied for Oracle databases (from version 8) created by the Oracle Corporation. It provides database backup, restore, and recovery capabilities addressing high availability and disaster recovery concerns.

7 Support for Multitenancy Data Recovery Advisor Recover Table & Table Partitions Multisection Backup Better Catalog Management Image Parallel Copies Backup of NEWLY Same BORN DatafileALL Restartable Backup SHOW Cross-Platform Backup & Restore Improvements Duplicate Enhancements Proactive Health Check Automatic Channel Failover Backup of Archivelogs Block Change Tracking SQL Interface Archivelog Deletion Policy Automatic Block Repair SHOW ALL Enhancement Drop Virtual Database SYSBACKUP Private Catalog thru RMAN

8 Components of RMAN RMAN TARGET DATABASE RMAN CLIENT FAST RECOVERY AREA MEDIA MANAGER RECOVERY CATALOG RECOVERY CATALOG SCHEMA

9 Components of RMAN TAPE DRIVE TAPE DRIVE TARGET DATABASE STANDBY DATABASE RECOVERY CATALOG CONTROL FILE AUXILIARY INSTANCE RECOVER CATALOG SCHEMA RMAN CLIENT

10 Benefits of RMAN Corrupted Blocks are detected and reported. Backs up and restores DATABASES, TABLESPACES, DATAFILES, CONTROLFILES and SPFILES. Can create a single Backup of all archive logs since the last backup. Can delete archive logs after they are backed up. Can backup the Control File and SPFILE automatically. Used for Cloning Databases and creating Standby Databases.

11 RMAN Terminology Image Copy Full copy of a Single File Backup Set Oracle format for a package of Objects backed up Channel A server process on the target database DB Incarnation Incremented each resetlogs Tag A logical name assigned by a user to a backup set or image copy. Tag=< name >

12 FEATURES Closed Database Backups Open Database Backups RECOVERY MANAGER USER MANAGED EXPORT BACKUP Supported Supported Not Supported Supported Supported Requires Rollback or Undo segments to generate consistent backups Incremental Backups Supported Not Supported Not Supported Corrupt Block Detection Supported Automatic Specification of Files to Supported include in the backup Backup Repository Backups to Media Manager (Tapes) Backup of Initialization Parameter Backup of Password and Networking Files Supported. Catalog / NoCatalog Not Supported Not Supported. Files to be backed up should be copied manually. Not Supported. DBA should maintain the backup records. Supported. But Identifies corrupt blocks in the Export Log. Not Supported Not Supported Supported Supported Not Supported Supported Supported Not Supported Not Supported Supported Not Supported

13 RMAN 12c Some New Features SHOW ALL RMAN Configuration Settings SQL Interface Improvements SYSBACKUP Privilege Multisection Backup Improvements Recovering Tables and Table Partitions using RMAN Backups Support for Multitenant Architecture Duplicate Enhancements

14 RMAN 12c RMAN Configuration Settings SHOW ALL;

15 In RMAN 11g RMAN> show all; using target database control file instead of recovery catalog RMAN configuration parameters for database with db_unique_name PRODDB are: CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default CONFIGURE BACKUP OPTIMIZATION OFF; # default CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE MAXSETSIZE TO UNLIMITED; # default CONFIGURE ENCRYPTION FOR DATABASE OFF; # default CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/oracle/product/ /db_1/dbs/snapcf_proddb.f'; # default

16 In RMAN 12c Non CDB RMAN> show all; using target database control file instead of recovery catalog RMAN configuration parameters for database with db_unique_name RMANDB are: CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default CONFIGURE BACKUP OPTIMIZATION OFF; # default CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE MAXSETSIZE TO UNLIMITED; # default CONFIGURE ENCRYPTION FOR DATABASE OFF; # default CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/oracle/product/12.1.0/db_1/dbs/snapcf_rmandb.f'; # default

17 In RMAN 12c CDB RMAN> show all; using target database control file instead of recovery catalog RMAN configuration parameters for database with db_unique_name TEST12C are: CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default CONFIGURE BACKUP OPTIMIZATION OFF; # default CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default CONFIGURE CONTROLFILE AUTOBACKUP ON; # default CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE MAXSETSIZE TO UNLIMITED; # default CONFIGURE ENCRYPTION FOR DATABASE OFF; # default CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/localfs/orasrc/product/db/ /dbs/snapcf_test12c.f'; # default

18 Question? How can you RESET all the configuration settings of RMAN to DEFAULT using a single command? execute dbms_backup_restore.resetconfig; SQL> conn / as sysdba SQL> execute dbms_backup_restore.resetconfig; PL/SQL procedure successfully completed.

19 RMAN 12c SQL Interface Improvements

20 SQL Interface Improvements Till Oracle 11g, to run the SQL commands in the RMAN prompt we need to use SQL Keyword. SQL keyword is required preceding any SQL statements when used in RMAN. RMAN> sql sql statement ; In Oracle 12c RMAN, to run the SQL commands in the RMAN prompt, the use of SQL keyword has been eliminated. Now RMAN has been more friendly to SQL commands. RMAN> sql statement;

21 In RMAN 11g RMAN> sql "alter database datafile '+DATA_GRP/proddb/datafile/users '' offline"; sql statement: alter database datafile ''+DATA_GRP/proddb/datafile/users '' offline Below we can see the datafile belonging to USERS tablespace is OFFLINE. SQL> select file#,name,status from v$datafile; FILE# NAME STATUS DATA_GRP/proddb/datafile/system SYSTEM 2 +DATA_GRP/proddb/datafile/sysaux ONLINE 3 +DATA_GRP/proddb/datafile/undotbs ONLINE 4 +DATA_GRP/proddb/datafile/users OFFLINE 5 +DATA_GRP/proddb/datafile/example ONLINE 6 +DATA_GRP/proddb/datafile/tbsrman ONLINE

22 In RMAN 12c We can use the common SQL syntax without starting the command with the keyword SQL or the necessity to include double or single quotes. It's the same SQL command we use on a SqlPlus session. RMAN> alter database datafile '/vol1/oradata/rmandb/users01.dbf' offline; Statement processed SQL> select name,status from v$datafile; NAME STATUS /vol1/oradata/rmandb/system01.dbf SYSTEM /vol1/oradata/rmandb/example01.dbf ONLINE /vol1/oradata/rmandb/sysaux01.dbf ONLINE /vol1/oradata/rmandb/undotbs01.dbf ONLINE /vol2/tbsrman01.dbf ONLINE /vol1/oradata/rmandb/users01.dbf OFFLINE

23 In RMAN 11g Insert Statements RMAN> sql "insert into scott.dept values (50, ''IT'',''INDIA'')"; sql statement: insert into scott.dept values (50, ''IT'',''INDIA'') RMAN> sql "commit"; sql statement: commit SQL> select * from scott.dept; DEPTNO DNAME LOC IT INDIA 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON

24 In RMAN 12c Insert Statements RMAN> insert into scott.dept values (50, IT, INDIA ); Statement processed RMAN> commit; Statement processed SQL> select * from scott.dept; DEPTNO DNAME LOC IT INDIA 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON

25 In a similar way we can also issue create table statements, update statements etc., in RMAN Prompt without any trouble of quotations like single quotes or double quotes and also without the Preceding SQL keyword. What About SELECT and DES[CRIBE] Statements?

26 In RMAN 11g In Oracle 11g, It will not allow us to run SELECT and DESC[RIBE] commands in RMAN Prompt. RMAN> sql "select instance_name,status from v$instance"; sql statement: select instance_name,status from v$instance RMAN> sql 'desc v$instance'; sql statement: desc v$instance RMAN00571:================================================ RMAN-00569: ===============ERROR MESSAGE STACK FOLLOWS===== RMAN00571:================================================ RMAN-03009: failure of sql command on default channel at 02/22/ :11:53 RMAN-11003: failure during parse/execution of SQL statement: desc v$instance ORA-00900: invalid SQL statement

27 In RMAN 12c In Oracle 12c, We can also run SELECT and DESC[RIBE] commands in RMAN Prompt. RMAN> select instance_name,status from v$instance; INSTANCE_NAME STATUS RMANDB OPEN RMAN> desc dual Name Null? Type DUMMY VARCHAR2(1)

28 Question? When was Transportable Tablespace Feature introduced? Oracle 7 Oracle 8 Oracle 9 Transportable Tablespace was introduced in Oracle 8i. Database s source and destination must match the Block Size. OS must be same across the Source and Target.

29 RMAN 12c SYSBACKUP Privilege

30 In RMAN 11g Till Oracle 11g, users required SYSDBA privilege to backup the database. There were no separate roles given to the user who does the Backup and Recovery Operations. ~]$ rman Recovery Manager: Release Production on Sun Feb 22 17:00: Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved. RMAN> connect target / connected to target database: PRODDB (DBID= ) RMAN connects you to the target Database or Auxiliary database with the SYSDBA privilege. If you do not have this privilege, then the connection fails. You can connect as SYSDBA using a password file or using operating system authentication. You do not need to specify the SYSDBA option because RMAN uses this option implicitly and automatically. You must only have the SYSDBA privilege to connect to the target database.

31 In RMAN 12c In Oracle 12c a new Predefined role exclusively for Backup and Recovery has been introduced. SYSBACKUP This role is created with the database creation. The SYSBACKUP privilege allows the DBA to perform RMAN backup commands without additional privileges. With RMAN you have same authentication options that are available with SQL*Plus, which are Operating system authentication and password file authentication. RMAN> connect target "/ as sysbackup" connected to target database: RMANDB (DBID= ) SYSBACKUP does not include data access privilege, such as SELECT ANY TABLE. When you don t specify the role explicitly then the default used is as SYSDBA.

32 RMAN 12c Multisection Backup Improvements

33 In RMAN 11g Multi-Section option was introduced in Oracle 11g to handle large Datafiles backups. Using this option RMAN can split up or break up a large file into sections during the backup and recovery. This improves the performance of backup and recovery of a large Datafiles. Multi-Section option can be used in Oracle 11g for the below, 1. Backup using Backup sets. 2. Full Backups using Backup sets. 3. Incremental level 0 backups using Backup sets. SECTION SIZE is the keyword used and each channel will create separate files within the backup sets and backup the database in parallel. This option can only be used to backup the Datafiles. We can not use this option to backup the Control Files.

34 In RMAN 11g SQL> select file_id,file_name,bytes/1024/1024 size_mb from dba_data_files;where file_id=5; FILE_ID FILE_NAME SIZE_MB DATA_GRP/proddb/datafile/example When trying to backup as copy the datafile 5 using SECTION SIZE option, RMAN> backup as copy section size 100M datafile 5; Starting backup at 22-FEB-15 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=52 device type=disk RMAN-00571: ================================================= RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS====== RMAN-00571:================================================= RMAN-03002: failure of backup command at 02/22/ :08:14 RMAN-06580: the SECBYTES option cannot be used with AS COPY

35 In RMAN 12c From Oracle 12c RMAN, Multisection Backups are supported for the below., 1. Backup using Backup sets and Image Copies 2. Full Backups using Backup sets and Image Copies 3. Incremental level 0 backups and higher than level 0 If we specify the SECTION SIZE larger than the actual Datafile size, then RMAN does not use the Multisection option. The following example creates a multisection backup of the database using image copies, BACKUP AS COPY SECTION SIZE 500M DATABASE; The following example creates Multisection level 1 incremental backup, BACKUP INCREMENTAL LEVEL 1 SECTION SIZE 500M DATABASE;

36 In RMAN 12c SQL> select file_id,file_name,bytes/1024/1024 Size_MB from dba_data_files where file_id=2; FILE_ID FILE_NAME SIZE_MB /vol1/oradata/rmandb/example01.dbf RMAN> backup as copy section size 100M datafile 2; Starting backup at 22-FEB-15 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=44 device type=disk channel ORA_DISK_1: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks 1 through output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmoq5kt_.dbf tag=tag t channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03 channel ORA_DISK_1: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks through output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmoq5kt_.dbf tag=tag t channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07 channel ORA_DISK_1: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks through output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmoq5kt_.dbf tag=tag t channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:04 channel ORA_DISK_1: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks through output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmoq5kt_.dbf tag=tag t channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03 Finished backup at 22-FEB-15

37 In RMAN 12c RMAN> configure device type disk parallelism 4 backup type to backupset; new RMAN configuration parameters: CONFIGURE DEVICE TYPE DISK PARALLELISM 4 BACKUP TYPE TO BACKUPSET; new RMAN configuration parameters are successfully stored released channel: ORA_DISK_1 RMAN> backup as copy section size 100M datafile 2; Starting backup at 22-FEB-15 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=44 device type=disk allocated channel: ORA_DISK_2 channel ORA_DISK_2: SID=40 device type=disk allocated channel: ORA_DISK_3 channel ORA_DISK_3: SID=43 device type=disk allocated channel: ORA_DISK_4 channel ORA_DISK_4: SID=58 device type=disk channel ORA_DISK_1: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks 1 through channel ORA_DISK_2: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks through channel ORA_DISK_3: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks through channel ORA_DISK_4: starting datafile copy input datafile file number=00002 name=/vol1/oradata/rmandb/example01.dbf backing up blocks through output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmp0psq_.dbf tag=tag t channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:08 output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmp0psq_.dbf tag=tag t channel ORA_DISK_2: datafile copy complete, elapsed time: 00:00:07 output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmp0psq_.dbf tag=tag t channel ORA_DISK_3: datafile copy complete, elapsed time: 00:00:07 output file name=/oracle/fast_recovery_area/rmandb/datafile/o1_mf_example_bgmp0psq_.dbf tag=tag t channel ORA_DISK_4: datafile copy complete, elapsed time: 00:00:07 Finished backup at 22-FEB-15

38 RMAN 12c Table and Table Partition Recovery

39 In RMAN 11g Using Database Point-in-Time Recovery (DBPITR). Using Tablespace Point-in-Time Recovery (TSPITR). Using Recycle Bin. Using Flashback Table command.

40 In RMAN 12c From 12c, RMAN enables us to recover tables and table partitions at a point-in-time without affecting other objects in the database. RECOVER TABLE is the command used to recover table and table partitions from an RMAN Backup. Uses Database Backups and Archived Redo Logs for Recovery. The Recovery happens at an Auxiliary location. Uses an automatically created and maintained Auxiliary instance. User need to specify the auxiliary database location using AUXILIARY DESTINATION clause in the RECOVERY command. The database remains online. During Recovery other objects are not disturbed.

41 Table Recovery Useful in below Scenarios When the object has Logical corruption or dropped. When there is no sufficient undo to perform Flashback table. When DDL operation modified the structure and you want to recover the data (Flashback cannot rewind the structural changes). If you need to recover a small number of tables to a point-intime.

42 Table Recovery Pre-Requisites Database must be in ARCHIVELOG mode and read-write mode. At least one full backup is available along with archived logs. Enough disk space is available on the database server for auxiliary instance. If present, any dependent objects to include in recovery. COMPATIBLE parameter must be set to or higher to recover table partition.

43 Table Recovery Steps Determine the backup which has the tables or table partitions that needs to recover to specified point-in-time. Create auxiliary database and recover the tables or table partitions until specified point-in-time. Take a data dump export with recovered tables or table partitions. Import the dump into target database. Rename the recovered tables or table partitions in the target database. Clean-up the Auxiliary Instance. 1

44 Table Recovery RMAN> backup as backupset incremental level 0 database plus archivelog; Backup the Database SQL> select to_char(sysdate, 'DD-MON-YYYY HH24:MI:SS am'),current_scn from v$database; Check the current SCN / Time SYSDATE CURRENT_SCN FEB :51:12 am SQL> drop table TEST; Drop the Table Table dropped. SQL> desc TEST ERROR: ORA-04043: object TEST does not exist Check if the Table Exists

45 Table Recovery ~]$ rman target / Connect to RMAN Recovery Manager: Release Production on Tue Feb 24 00:52: Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved. connected to target database: RMANDB (DBID= ) Recover Table RMAN> RECOVER TABLE SCOTT."TEST" UNTIL TIME "to_date('24-feb :51:12','DD-MON-YYYY:HH24:MI:SS')" AUXILIARY DESTINATION '/backup' DATAPUMP DESTINATION '/backup' DUMP FILE 'testdump.dmp';

46 Table Recovery How it Works? 1. Creating automatic instance, with SID='axEy' initialization parameters used for automatic instance: db_name=rmandb db_unique_name=axey_pitr_rmandb compatible= db_block_size=8192 db_files=200 sga_target=1g processes=80 diagnostic_dest=/oracle db_create_file_dest=/backup log_archive_dest_1='location=/backup' #No auxiliary parameter file used

47 Table Recovery How it Works? 2. Restore of the Control File for the Auxiliary Instance contents of Memory Script: { # set requested point in time set until time "to_date('24-feb :51:12','DD-MON- YYYY:HH24:MI:SS')"; # restore the controlfile restore clone controlfile; # mount the controlfile sql clone 'alter database mount clone database'; # archive current online log sql 'alter system archive log current'; }

48 Table Recovery How it Works? 3. A list of Datafiles that will be restored, followed by their restore and recovery in the auxiliary instance. contents of Memory Script: { # set requested point in time set until time "to_date('24-feb :51:12','DD-MON-YYYY:HH24:MI:SS')"; # set destinations for recovery set and auxiliary set datafiles set newname for clone datafile 1 to new; set newname for clone datafile 4 to new; set newname for clone datafile 3 to new; set newname for clone tempfile 1 to new; # switch all tempfiles switch clone tempfile all; # restore the tablespaces in the recovery set and the auxiliary set restore clone datafile 1, 4, 3; switch clone datafile all; } contents of Memory Script: { # set requested point in time set until time "to_date('24-feb :51:12','DD-MON-YYYY:HH24:MI:SS')"; # online the datafiles restored or switched sql clone "alter database datafile 6 online"; # recover and open resetlogs recover clone database tablespace "USERS", "SYSTEM", "UNDOTBS1", "SYSAUX" delete archivelog; alter clone database open resetlogs; }

49 Table Recovery How it Works? 4. Export of tables from the auxiliary instance via Oracle Data Pump. contents of Memory Script: { # create directory for datapump import sql "create or replace directory TSPITR_DIROBJ_DPDIR as '' /backup''"; # create directory for datapump export sql clone "create or replace directory TSPITR_DIROBJ_DPDIR as '' /backup''"; } executing Memory Script sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/backup' sql statement: create or replace directory TSPITR_DIROBJ_DPDIR as ''/backup' Performing export of tables... EXPDP> Starting "SYS"."TSPITR_EXP_axEy_ugii": EXPDP> Estimate in progress using BLOCKS method... EXPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA EXPDP> Total estimation using BLOCKS method: 64 KB EXPDP> Processing object type TABLE_EXPORT/TABLE/TABLE EXPDP> Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT EXPDP> Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS EXPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS EXPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/MARKER EXPDP>.. exported "SCOTT"."TEST" KB 3 rows EXPDP> Master table "SYS"."TSPITR_EXP_axEy_ugii" successfully loaded/unloaded EXPDP> ****************************************************************************** EXPDP> Dump file set for SYS.TSPITR_EXP_axEy_ugii is: EXPDP> /backup/testdump.dmp EXPDP> Job "SYS"."TSPITR_EXP_axEy_ugii" successfully completed at Tue Feb 24 00:54: elapsed 0 00:00:31 Export completed

50 Table Recovery How it Works? 5. Import of tables, constraints, indexes, and other dependent objects into the target database from the Data Pump export file. contents of Memory Script: { # shutdown clone before import shutdown clone abort } executing Memory Script Oracle instance shut down Performing import of tables... IMPDP> Master table "SYS"."TSPITR_IMP_axEy_Ewrg" successfully loaded/unloaded IMPDP> Starting "SYS"."TSPITR_IMP_axEy_Ewrg": IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE IMPDP> Processing object type TABLE_EXPORT/TABLE/TABLE_DATA IMPDP>.. imported "SCOTT"."TEST" KB 3 rows IMPDP> Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT IMPDP> Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS IMPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS IMPDP> Processing object type TABLE_EXPORT/TABLE/STATISTICS/MARKER IMPDP> Job "SYS"."TSPITR_IMP_axEy_Ewrg" successfully completed at Tue Feb 24 00:54: elapsed 0 00:00:02 Import completed

51 Table Recovery How it Works? 6. Clean-up of the Auxiliary Instance. Removing automatic instance Automatic instance removed auxiliary instance file /backup/rmandb/datafile/o1_mf_temp_bgpzkdmn_.tmp deleted auxiliary instance file /backup/axey_pitr_rmandb/onlinelog/o1_mf_3_bgpzl21n_.log deleted auxiliary instance file /backup/axey_pitr_rmandb/onlinelog/o1_mf_2_bgpzl0q8_.log deleted auxiliary instance file /backup/axey_pitr_rmandb/onlinelog/o1_mf_1_bgpzkzlr_.log deleted auxiliary instance file /backup/axey_pitr_rmandb/datafile/o1_mf_users_bgpzky0x_.dbf deleted auxiliary instance file /backup/rmandb/datafile/o1_mf_sysaux_bgpzhy1m_.dbf deleted auxiliary instance file /backup/rmandb/datafile/o1_mf_undotbs1_bgpzhy13_.dbf deleted auxiliary instance file /backup/rmandb/datafile/o1_mf_system_bgpzhy16_.dbf deleted auxiliary instance file /backup/rmandb/controlfile/o1_mf_bgpzhq7j_.ctl deleted auxiliary instance file testdump.dmp deleted Finished recover at 24-FEB-15

52 RMAN 12c Support for Multitenant Architecture

53 Oracle 12c Multitenant Architecture Multitenant Architecture was introduced in Oracle 12c. The Architecture consists of Container Database and Pluggable Databases. RMAN 12c provides full support for backup and recovery of these Container and Pluggable databases. You can backup the Entire Container Database. It is similar to a Full Backup of a Non-CDB database. Backing up a Container Database includes all the Pluggable Databases and Archive Logs.

54 Oracle 12c Multitenancy

55 RMAN 12c in Multitenant Architecture BACKUP COMMANDS Backing up the Whole CDB or Non-CDB Database RMAN> BACKUP DATABASE; Backing up a Pluggable Database(s) RMAN> BACKUP PLUGGABLE DATABASE PDB1; RMAN> BACKUP PLUGGABLE DATABASE PDB1, PDB2; Backing up a ROOT Container Database RMAN> BACKUP PLUGGABLE DATABASE ROOT; Backing up a Tablespace of a Pluggable Database RMAN> BACKUP TABLESPACE PDB1:TEST_TBS;

56 RMAN 12c in Multitenant Architecture RECOVER COMMANDS Recover the Whole CDB or Non-CDB Database RMAN> RECOVER DATABASE; Recover a Pluggable Database(s) RMAN> RECOVER PLUGGABLE DATABASE PDB1; RMAN> RECOVER PLUGGABLE DATABASE PDB1, PDB2; Recover a ROOT Container Database RMAN> RECOVER PLUGGABLE DATABASE ROOT; Recover a Tablespace of a Pluggable Database RMAN> RECOVER TABLESPACE PDB1:TEST_TBS;

57 RMAN 12c DUPLICATE Enhancements

58 RMAN 12c Duplicate Enhancements On using DUPLICATE command Database is Created and Opened with RESETLOGS. In 12c a Clause has been introduced NOOPEN. The Database will be created and will not be Opened. NOOPEN clause is used as below., RMAN> DUPLICATE TARGET DATABASE TO DUPDB FROM ACTIVE DATABASE NOOPEN;

59 RMAN 12c Duplicate Enhancements NOOPEN Clause is used in the below Situations., If any modifications needed to the Initialization Parameters before opening the database. If you plan to create a database for Upgrade or open with the Upgrade mode (Startup Upgrade).

60 Thank You..!!!

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c has automated table level recovery using RMAN. If you lose a table after user error or get

More information

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery

Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Oracle 11gR2 : Recover dropped tablespace using RMAN tablespace point in time recovery Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com This is new

More information

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows:

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows: How to Recover lost online redo logs? Author A.Kishore If you lose the current online redo log, then you will not be able to recover the information in that online redo log. This is one reason why redo

More information

Oracle Database 12c Recovery Manager New Features

Oracle Database 12c Recovery Manager New Features Oracle Database 12c Recovery Manager New Features Presented by: Andy Colvin February 13, 2013 *DISCLAIMER* Oracle 12c has not been released yet Some features may not be available I believe Oracle has mentioned

More information

Using RMAN to restore a database to another server in an ASM environment

Using RMAN to restore a database to another server in an ASM environment Using RMAN to restore a database to another server in an ASM environment It is possible to restore an Oracle 11g database to another server easily in an ASM environment by following the steps below. 1.

More information

Database Disaster Recovery using only RMAN Backups

Database Disaster Recovery using only RMAN Backups 12 th Apr, 2010 PURPOSE This paper demonstrates how an Oracle Database can be recovered or reconstructed by using only the RMAN Backup files (from Disks) in case of a complete server crash. CASE STUDY

More information

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode RMAN - What is Rman - Why use Rman - Understanding The Rman Architecture - Taking Backup in Non archive Backup Mode - Taking Backup in archive Mode - Enhancement in 10g For Rman - 9i Enhancement For Rman

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

Backup/Restore Oracle 8i/9i/10g

Backup/Restore Oracle 8i/9i/10g This chapter will describe in details how Software backup your Oracle Database Server and how you can restore an Oracle database using the backup files. Table of Content 1. Requirements 2. Overview 3.

More information

HOW TO. RMAN Restore for Standby 10gR2

HOW TO. RMAN Restore for Standby 10gR2 Author: Martin Decker Date: 8.10.2008 Subject: RMAN Restore for Standby 10gR2 HOW TO RMAN Restore for Standby 10gR2 1 Preparations The existing database MDDB1 should be duplicated as Standby Database MDSTB1

More information

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP.

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP. http://www.51- pass.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which two statements are true about scheduling operations in a pluggable database

More information

Configuring Backup Settings. Copyright 2009, Oracle. All rights reserved.

Configuring Backup Settings. Copyright 2009, Oracle. All rights reserved. Configuring Backup Settings Objectives After completing this lesson, you should be able to: Use Enterprise Manager to configure backup settings Enable control file autobackup Configure backup destinations

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins by gaining a much deeper

More information

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your own recovery requirements. You'll

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle University Contact Us: +35929238111 Oracle Database 11g: Administration Workshop II DBA Release 2 Duration: 5 Days What you will learn This course takes the database administrator beyond the basic

More information

Strategies for Oracle Database Backup and Recovery: Case Studies. Mingguang Xu

Strategies for Oracle Database Backup and Recovery: Case Studies. Mingguang Xu Strategies for Oracle Database Backup and Recovery: Case Studies Mingguang Xu Office of Institutional Research University of Georgia www.oir.uga.edu/oirpres.html Oracle Files Oracle requires the following

More information

Database Recovery For Newbies

Database Recovery For Newbies Database Recovery For Newbies Paper #521 Bonnie Bizzaro, Susan McClain Objectives Provide basic understanding of recovery processes and terms Define different types of recovery Discuss common recovery

More information

Oracle 10g Feature: RMAN Incrementally Updated Backups

Oracle 10g Feature: RMAN Incrementally Updated Backups Oracle 10g Feature: RMAN Incrementally Updated Backups Author: Dave Anderson, SkillBuilders Date: September 13, 2004 Introduction This article explains one of the features presented by Dave Anderson at

More information

12. User-managed and RMAN-based backups.

12. User-managed and RMAN-based backups. 12. User-managed and RMAN-based backups. Abstract: A physical backup is a copy of the physical database files, and it can be performed in two ways. The first is through the Recovery Manager (RMAN) tool

More information

OCP: Oracle Database 12c Administrator Certified Professional Study Guide. Exam 1Z0-063

OCP: Oracle Database 12c Administrator Certified Professional Study Guide. Exam 1Z0-063 Brochure More information from http://www.researchandmarkets.com/reports/2561621/ OCP: Oracle Database 12c Administrator Certified Professional Study Guide. Exam 1Z0-063 Description: An updated guide for

More information

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites D78850GC10 Oracle 12c and Recovery Workshop Summary Duration Vendor Audience 5 Days Oracle Data Warehouse Administrators, Administrators, Support Engineers, Technical Administrators, Technical Consultants

More information

Oracle Database 11g: Administration Workshop II Release 2

Oracle Database 11g: Administration Workshop II Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop II Release

More information

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved.

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved. Restore and Recovery Tasks Objectives After completing this lesson, you should be able to: Describe the causes of file loss and determine the appropriate action Describe major recovery operations Back

More information

11. Oracle Recovery Manager Overview and Configuration.

11. Oracle Recovery Manager Overview and Configuration. 11. Oracle Recovery Manager Overview and Configuration. Abstract: This lesson provides an overview of RMAN, including the capabilities and components of the RMAN tool. The RMAN utility attempts to move

More information

Oracle Recovery Manager 10g. An Oracle White Paper November 2003

Oracle Recovery Manager 10g. An Oracle White Paper November 2003 Oracle Recovery Manager 10g An Oracle White Paper November 2003 Oracle Recovery Manager 10g EXECUTIVE OVERVIEW A backup of the database may be the only means you have to protect the Oracle database from

More information

DOCUMENTATION ORACLE BACKUP & RESTORE OPERATIONS

DOCUMENTATION ORACLE BACKUP & RESTORE OPERATIONS DOCUMENTATION Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may be reproduced, transmitted, transcribed,

More information

Getting all the pieces: Reliable Backup/Recovery

Getting all the pieces: Reliable Backup/Recovery Getting all the pieces: Reliable Backup/Recovery Part 1: Recovery Manager Part 2: Custom Backup Mark W. Farnham Andy Rivenes Neil Jensen Overview Whether you use Oracle s Recovery Manager product, a third

More information

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization Introducción Objetivos Objetivos del Curso Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting to the Database and the ASM Instance

More information

Recreate Physical Standby Database after Recovery of Primary Database

Recreate Physical Standby Database after Recovery of Primary Database Recreate Physical Standby Database after Recovery of Primary Database In Oracle 11g it is possible to create a Physical Standby Database from the Primary Database using RMAN. Furthermore, the same procedure

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

Oracle Database 12c: New Features for Administrators

Oracle Database 12c: New Features for Administrators Oracle University Contact Us: 67 52 67 24 Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you

More information

Oracle Database Cross Platform Migration Lucy Feng, DBAK

Oracle Database Cross Platform Migration Lucy Feng, DBAK Delivering Oracle Success Oracle Database Cross Platform Migration Lucy Feng, DBAK RMOUG QEW November 19, 2010 Business Requirements Migrate all Oracle databases to IBM zseries based Linux The database

More information

Oracle Database 10g: Administration Workshop II Release 2

Oracle Database 10g: Administration Workshop II Release 2 ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This course advances your success as an Oracle professional

More information

Oracle Database 11g: Administration And Backup & Recover

Oracle Database 11g: Administration And Backup & Recover Oracle Database 11g: Administration And Backup & Recover ส าหร บคอร ส Oracle 11g Database Administration น เป นคอร สส าหร บผ ท ก าล งเร มต นการเป น ORACLE DBA หร อผ ท ต องการจะสอบ Oracle Certified Associate

More information

Oracle Database Backups and Disaster Recovery @ Autodesk

Oracle Database Backups and Disaster Recovery @ Autodesk Oracle Database Backups and Disaster Recovery @ Autodesk Alan Williams Database Design Engineer Who We Are Autodesk software, suites, and cloud technology help customers design, visualize, and simulate

More information

ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR. Enterprise Manager Express home page versus Enterprise Manager Database Control

ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR. Enterprise Manager Express home page versus Enterprise Manager Database Control FACULDADE DE EDUCAÇÃO SUPERIOR DO PARANÁ CURSO DE EXTENSÃO UNIVERSITÁRIA ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR Enterprise Manager and Other Tools Enterprise Manager (EM)

More information

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities.

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities. Course Code: Title: Format: Duration: SSD024 Oracle 11g DBA I Instructor led 5 days Course Description Through hands-on experience administering an Oracle 11g database, you will gain an understanding of

More information

Oracle Backup and Recover 101. Osborne Press ISBN 0-07-219461-8

Oracle Backup and Recover 101. Osborne Press ISBN 0-07-219461-8 Oracle Backup and Recover 101 Osborne Press ISBN 0-07-219461-8 First Printing Personal Note from the Authors Thanks for your purchase of our book Oracle Backup & Recovery 101. In our attempt to provide

More information

Oracle Database 10g: Backup and Recovery 1-2

Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-3 What Is Backup and Recovery? The phrase backup and recovery refers to the strategies and techniques that are employed

More information

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Use RMAN to relocate a 10TB RAC database with minimum downtime Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Contents Methods of relocate a database with minimum down time RMAN oracle suggested backup strategy

More information

Agenda. Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups

Agenda. Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups Agenda Overview Configuring the database for basic Backup and Recovery Backing up your database Restore and Recovery Operations Managing your backups Overview Backup and Recovery generally focuses on the

More information

Oracle Database 10g: Backup and Recovery

Oracle Database 10g: Backup and Recovery Oracle Database 10g: Backup and Recovery Volume I Student Guide D22057GC10 Production 1.0 June 2006 D46524 1 Authors Donna Keesling Maria Billings Technical Contributors and Reviewers Christopher Andrews

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Working knowledge of SQL and use of PL/SQL

More information

Oracle Database 11g: Administration Workshop II

Oracle Database 11g: Administration Workshop II Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: Administration Workshop II Duração: 5 Dias Objetivos do Curso In this course, the concepts and architecture that support backup and

More information

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course will provide you with

More information

Oracle Database B14191-02

Oracle Database B14191-02 Oracle Database Backup and Recovery Advanced User s Guide 10g Release 2 (10.2) B14191-02 November 2005 A guide to advanced backup and recovery of Oracle databases and advanced uses of Recovery Manager

More information

Cross Platform Transportable Tablespaces Migration in Oracle 11g

Cross Platform Transportable Tablespaces Migration in Oracle 11g Cross Platform Transportable Tablespaces Migration in Oracle 11g Prepared by ViSolve Migration Team June 2012 Contact ViSolve, Inc. 4010, Moorpark Avenue, #205 San Jose, California 95117 (602) 842 2738

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Course ON10G 5 Day(s) 30:00 Hours Introduction This course introduces students to the new features in Oracle Database 10g Release 2 - the database for

More information

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore APPENDIXA This appendix describes the following procedures: Cisco ANA Registry Oracle Database Cisco ANA Registry This section describes the Cisco ANA Registry backup and restore procedure. Overview Provides

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop II - LVC. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop II - LVC. 5 Jours [35 Heures] Objectif Back up and recover a database Configure Oracle Database for optimal recovery Administer ASM disk groups Use an RMAN backup to duplicate a database Automating Tasks with the Scheduler Participant

More information

BrightStor ARCserve Backup

BrightStor ARCserve Backup BrightStor ARCserve Backup Support for Oracle Backup and Restore on Windows 64-Bit Platform - 1 - TABLE OF CONTENTS 1. Summary... 3 2. Backup and Restore Process... 3 3. RMAN Command and Script Template...

More information

Oracle 11g DBA Training Course Content

Oracle 11g DBA Training Course Content Oracle 11g DBA Training Course Content ORACLE 10g/11g DATABASE ADMINISTRATION CHAPTER1 Important Linux commands Installing of Redhat Linux as per oracle database requirement Installing of oracle database

More information

An Oracle White Paper January 2014. Oracle Database 12c: Full Transportable Export/Import

An Oracle White Paper January 2014. Oracle Database 12c: Full Transportable Export/Import An Oracle White Paper January 2014 Oracle Database 12c: Full Transportable Export/Import Introduction... 3 Benefits of Using Full Transportable Export/Import... 4 Full Transportable Export/Import Support

More information

Maximize Availability With Oracle Database 12c

Maximize Availability With Oracle Database 12c Maximize Availability With Oracle Database 12c Darl Kuhn DBA darl.kuhn@oracle.com 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. HA? 2 Copyright 2013, Oracle and/or its affiliates.

More information

Oracle Database 12c: Admin, Install and Upgrade Accelerated

Oracle Database 12c: Admin, Install and Upgrade Accelerated Oracle University Contact Us: + 38516306373 Oracle Database 12c: Admin, Install and Upgrade Accelerated Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Demos - Workshop. -- Configure the RMAN

Demos - Workshop. -- Configure the RMAN Demos - Workshop -- Configure the RMAN configure device type disk backup type to compressed backupset; configure channel 1 device type disk format '/home/oracle/app/oracle/backup/bck_orcl_%u'; configure

More information

ORACLE CORE DBA ONLINE TRAINING

ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA THIS ORACLE DBA TRAINING COURSE IS DESIGNED TO PROVIDE ORACLE PROFESSIONALS WITH AN IN-DEPTH UNDERSTANDING OF THE DBA FEATURES OF ORACLE, SPECIFIC ORACLE

More information

Backup and Recovery. Oracle RMAN 11 g. Oracle Press ORACLG. Matthew Hart. Robert G. Freeman. Mc Graw Hill. Lisbon London Madrid Mexico City Milan

Backup and Recovery. Oracle RMAN 11 g. Oracle Press ORACLG. Matthew Hart. Robert G. Freeman. Mc Graw Hill. Lisbon London Madrid Mexico City Milan ORACLG Oracle Press Oracle 11 g Backup and Recovery Robert G. Freeman Matthew Hart Mc Graw Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

More information

Using Recovery Manager with Oracle Data Guard in Oracle Database 10g. An Oracle White Paper April 2009

Using Recovery Manager with Oracle Data Guard in Oracle Database 10g. An Oracle White Paper April 2009 Using Recovery Manager with Oracle Data Guard in Oracle Database 10g An Oracle White Paper April 2009 Using Recovery Manager with Oracle Data Guard in Oracle Database 10g Executive summary... 3 Introduction...

More information

AV-004: Administering and Programming with ORACLE

AV-004: Administering and Programming with ORACLE AV-004: Administering and Programming with ORACLE Oracle 11g Duration: 140 hours Introduction: An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve

More information

ORACLE DATABASE 11G: COMPLETE

ORACLE DATABASE 11G: COMPLETE ORACLE DATABASE 11G: COMPLETE 1. ORACLE DATABASE 11G: SQL FUNDAMENTALS I - SELF-STUDY COURSE a) Using SQL to Query Your Database Using SQL in Oracle Database 11g Retrieving, Restricting and Sorting Data

More information

Oracle Database B14192-03

Oracle Database B14192-03 Oracle Database Backup and Recovery Basics 10g Release 2 (10.2) B14192-03 November 2005 An introduction to the basics of backup and recovery of Oracle databases, focusing on the use of Recovery Manager

More information

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide TECHNICAL REPORT Nimble Storage Oracle Backup and Recovery Guide N I M B L E T E C H N I C A L R E P O R T : N I M B L E S T O R A G E F O R O R A C L E B A C K U P A N D R E C O V E R Y 1 Document Revision

More information

! " # #$ " " %" & "'( " "' ( ) " * ""! ). " / ( * ( "# 0! " ). '

!  # #$   % & '(  ' ( )  * ! ).  / ( * ( # 0!  ). ' Page 1 of 5! " # $%&' ( )*! " # #$ " " %" & "'( " "' ( ) " * ""! "+ """( +!, - ALTER DATABASE BACKUP CONTROLFILE TO '/u00/app/oracle/admin/t816a/backup/ctrl.bck'; ). " / ( * ( "# 0! " ). ' RMAN-06005:

More information

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper An White Paper Contents 1. OVERVIEW... 1 1.1 DEFINITIONS... 1 2. ENTERPRISE BACKUP UTILITY... 2 2.1 ARCHITECTURE... 2 2.1.1 Target Database... 2 2.1.2 Catalog... 2 2.1.3 Media Management Layer (MML)...

More information

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper January 2007

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper January 2007 Using Recovery Manager with Oracle Data Guard in Oracle9i An Oracle White Paper January 2007 Using Recovery Manager with Oracle Data Guard in Oracle9i Executive summary... 3 Introduction... 3 Configuration

More information

Oracle Database 11g: New Features for Administrators DBA Release 2

Oracle Database 11g: New Features for Administrators DBA Release 2 Oracle Database 11g: New Features for Administrators DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: New Features for Administrators DBA Release 2 training explores new change

More information

Clonación de una Base de Datos Oracle 11gR2 Activa usando RMAN. CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN

Clonación de una Base de Datos Oracle 11gR2 Activa usando RMAN. CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN Autor : Luis Alberto Flores Zapata Creado : 10-Agosto-2015 1 Contenido CLONACIÓN DE UNA BASE DE DATOS ORACLE 11gR2 ACTIVA USANDO RMAN... 3

More information

Oracle Recovery Manager

Oracle Recovery Manager 1 sur 6 05/08/2014 14:17 ORACLE.COM TECHNOLOGY NETWORK PARTNERS STORE SUPPORT (Sign In / Register for a free DownloadsDocumentation Discussion Forums Articles Sample Code Training RSS Resources For PRODUCT

More information

RMAN for Commando DBAs. By Charles Kim

RMAN for Commando DBAs. By Charles Kim RMAN for Commando DBAs By Charles Kim 1 Charles Kim Oracle Certified DBA Oracle Certified RAC Expert EMail: ckim@dbaexpert.com 2 DBAExpert.com Agenda Backup Strategy RMAN Configuration Backup and Recovery

More information

Oracle 11g DBA Online Course - Smart Mind Online Training, Hyderabad. Oracle 11g DBA Online Training Course Content

Oracle 11g DBA Online Course - Smart Mind Online Training, Hyderabad. Oracle 11g DBA Online Training Course Content Oracle 11g DBA Online Training Course Content Faculty: Real time and certified INTRODUCTION TO ORACLE DBA What is DBA? Why a Company needs a DBA? Roles & Responsibilities of DBA Oracle Architecture Physical

More information

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices Oracle Backup and Recovery Best Practices Dell Compellent Storage Center Dell Compellent Technical Best Practices ii Document Revision Table 1. Revision History Date Revision Description 6/15/2011 A Initial

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Oracle Backup Recovery Setup on LeftHand Networks IP SAN Legal Notices Warranty The only warranties for HP products and services are set forth

More information

Oracle 11g New Features - OCP Upgrade Exam

Oracle 11g New Features - OCP Upgrade Exam Oracle 11g New Features - OCP Upgrade Exam This course gives you the opportunity to learn about and practice with the new change management features and other key enhancements in Oracle Database 11g Release

More information

Backup Types. Backup and Recovery. Categories of Failures. Issues. Logical. Cold. Hot. Physical With. Statement failure

Backup Types. Backup and Recovery. Categories of Failures. Issues. Logical. Cold. Hot. Physical With. Statement failure Backup Types Logical Backup and Recovery Cold Hot Physical With Without Issues Categories of Failures Protectthe database from numerous types of failures Increase Mean-Time-Between-Failures (MTBF) Decrease

More information

RMAN in the Trenches: To Go Forward, We Must Backup

RMAN in the Trenches: To Go Forward, We Must Backup RMAN in the Trenches: To Go Forward, We Must Backup By Philip Rice In the process of implementing Recovery Manager (RMAN) over a period of several years, I had many questions, and some were not easy to

More information

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I COURCE TITLE DURATION DBA 11g Oracle Database 11g: Administration Workshop I 40 H. What you will learn: This course is designed to give students a firm foundation in basic administration of Oracle Database

More information

Oracle Database. Backup and Recovery Basics 10g Release 1 (10.1) Part No. B10735-01

Oracle Database. Backup and Recovery Basics 10g Release 1 (10.1) Part No. B10735-01 Oracle Database Backup and Recovery Basics 10g Release 1 (10.1) Part No. B10735-01 December 2003 Oracle Database Backup and Recovery Basics 10g Release 1 (10.1) Part No. B10735-01 Copyright 2003 Oracle

More information

Oracle Database 12c: Administration Workshop NEW

Oracle Database 12c: Administration Workshop NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Administration Workshop NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

Oracle 10g release 1. Administration. Database Outsourcing Experts

Oracle 10g release 1. Administration. Database Outsourcing Experts SYSAUX This new tablespace sits alongside the SYSTEM tablespace and serves the purpose of keeping system-related schemas out of the SYSTEJM tablespace. This includes AWR data, Log Miner data, Streams,

More information

11. Configuring the Database Archiving Mode.

11. Configuring the Database Archiving Mode. 11. Configuring the Database Archiving Mode. Abstract: Configuring an Oracle database for backup and recovery can be complex. At a minimum, you must understand the archive process, the initialization parameters

More information

Oracle Backup & Recovery

Oracle Backup & Recovery ORACLG«Oracle Press Oracle Backup & Recovery Rama Velpuri Osborne McGraw-Hill Berkeley New York St. Louis San Francisco Auckland Bogota Hamburg London Madrid Mexico City Milan Montreal New Delhi Panama

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures] Objectif Install Oracle Grid Infrastructure Install Oracle Database 11g Release 2 Use Oracle Restart to manage components Use Automatic Storage Management (ASM) enhancements Implement table compression

More information

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08

Zen Internet. Online Data Backup. Zen Vault Professional Plug-ins. Issue: 2.0.08 Zen Internet Online Data Backup Zen Vault Professional Plug-ins Issue: 2.0.08 Contents 1 Plug-in Installer... 3 1.1 Installation and Configuration... 3 2 Plug-ins... 5 2.1 Email Notification... 5 2.1.1

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Oracle DBA Course Contents

Oracle DBA Course Contents Oracle DBA Course Contents Overview of Oracle DBA tasks: Oracle as a flexible, complex & robust RDBMS The evolution of hardware and the relation to Oracle Different DBA job roles(vp of DBA, developer DBA,production

More information

Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN

Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN Oracle Backup, Recovery, and Performance Tuning using EMC Avamar and Oracle RMAN Best Practices Planning Abstract This white paper provides an in-depth review of the capabilities of the EMC Avamar Oracle

More information

Oracle9i Database: Advanced Backup and Recovery Using RMAN

Oracle9i Database: Advanced Backup and Recovery Using RMAN Oracle9i Database: Advanced Backup and Recovery Using RMAN Student Guide D16507GC10 Production 1.0 March 2003 D37796 Author Jim Womack Technical Contributors and Reviewers Matthew Arrocha Tammy Bednar

More information

Feature. Database Backup and Recovery Best Practices

Feature. Database Backup and Recovery Best Practices Feature Ali Navid Akhtar, OCP, has more than two decades of experience with databases. He works as a lead database administrator at Solo Cup Co. Jeff Buchholtz has more than 18 years of design, implementation

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

EMC NetWorker Module for Oracle Release 5.0

EMC NetWorker Module for Oracle Release 5.0 EMC NetWorker Module for Oracle Release 5.0 Administration Guide P/N 300-006-990 REV A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2003-2009

More information

Implementing an Enterprise Class Database Backup and Recovery Plan

Implementing an Enterprise Class Database Backup and Recovery Plan Implementing an Enterprise Class Database Backup and Recovery Plan Tammy Bednar Oracle Corporation 400 Oracle Parkway, Redwood Shores, CA 94065 Work: (650) 506-4780 Fax: (650) 506-7203 tammy.bednar@oracle.com

More information

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added? DBMS Questions 1.) Which type of file is part of the Oracle database? A.) B.) C.) D.) Control file Password file Parameter files Archived log files 2.) Which statements are use to UNLOCK the user? A.)

More information

ASM and for 3rd Party Snapshot Solutions - for Offhost. Duane Smith Nitin Vengurlekar RACPACK

ASM and for 3rd Party Snapshot Solutions - for Offhost. Duane Smith Nitin Vengurlekar RACPACK ASM and for 3rd Party Snapshot Solutions - for Offhost backup Duane Smith Nitin Vengurlekar RACPACK POINT-IN-TIME COPY TECHNOLOGIES POINT-IN-TIME COPY TECHNOLOGIES Generic guidelines & best practices for

More information

An Oracle White Paper March 2012. Backup and Recovery Strategies for the Oracle Database Appliance

An Oracle White Paper March 2012. Backup and Recovery Strategies for the Oracle Database Appliance An Oracle White Paper March 2012 Backup and Recovery Strategies for the Oracle Database Appliance 1 Oracle Database Appliance The Oracle Database Appliance is an engineered-system; a pre-configured bundle

More information

Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage

Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage Best Practices White Paper Using Oracle Database 10g Automatic Storage Management with FUJITSU Storage Sep 6, 2005 Fujitsu Limited Contents 1. Introduction... 1 2. Fujitsu s ETERNUS Storage Systems...

More information

Oracle Data Recovery Advisor

Oracle Data Recovery Advisor Infrastructure at your Service. Oracle Data Recovery Advisor Infrastructure at your Service. About me David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com www.dbi-services.com

More information