SlideShare a Scribd company logo
Oracle Recovery Manager 12c
Best Practices
Sridhar Ranganathan
Principal Product Manager
Oracle Database – High Availability
October 1, 2014
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Safe Harbor Statement
The following is intended to outline our general product direction. It is intended for
information purposes only, and may not be incorporated into any contract. It is not a
commitment to deliver any material, code, or functionality, and should not be relied upon
in making purchasing decisions. The development, release, and timing of any features or
functionality described for Oracle’s products remains at the sole discretion of Oracle.
3
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
4
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
5
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
• Fine grained Recovery
Table / Table partitions
• Support for Multitenant Database
Container and Pluggable Databases
Backup and recovery
• Improved Performance
Faster cloning capability
Faster recovery over network
Multi-section support for incremental
& image copies
• Simplified Platform Migration
Enhanced Cross-platform process
• Separation of Duty
SYSBACKUP privilege for RMAN
• Storage Snapshot Optimization
Point-in-time recovery from storage
snapshots
• SQL interface in RMAN
Directly run SQL commands within RMAN
Oracle RMAN 12c: List of New Features
6
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
7
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 11g: Active DUPLICATE
• ACTIVE DUPLICATE introduced in 11g
• Create a clone (or) a standby database from the
production DB as of the current time / SCN
• Eliminates need for a backup staging
• Utilizes SOURCE (TARGET) database channels to
PUSH data files and archived logs to clone
(AUXILIARY) database server
• Data files are copied as image copies
One-Command Database Cloning
Push Data Files, Archived Logs
Source Database Clone Database
11g 11g
Challenges
Large transfers due to image copies
Network could be a bottleneck
Takes longer to duplicate
DUPLICATE TARGET DATABASE TO cloneDB
{FOR STANDBY} FROM ACTIVE DATABASE;
8
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: New RMAN Active DUPLICATE
• Create a clone (or) a standby database from the
production DB as of the current time / SCN
• Eliminates a need for a backup staging
• Uses Auxiliary Channels (clone side) to PULL data from
the source database
• Data files are copied as backup sets
– Unused block compression, multi-channel, compression,
encryption
• New keyword not open the clone automatically clone:
NOOPEN
Network Efficient Duplication
Pulls Data Files, Archived Logs Backup Sets
Source Database Clone Database
12c 12c
Benefits
Reduced transfer sizes
Network efficient & secured
Faster to create a clone
DUPLICATE TARGET DATABASE TO cloneDB FROM
ACTIVE DATABASE USING COMPRESSED BACKUPSET
SECTION SIZE 100M NOOPEN;
9
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
10
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
• External Recovery Catalog required when using RMAN in a Data Guard environment
• Primary: Enable Block Change Tracking (BCT), Backup sets at local FRA
• Standby: Enable BCT, Image copies at local FRA + Daily & Weekly backups from FRA to Tape (or) Direct
backup to Tape
• Tape backups made accessible for both Primary an Standby by the catalog by default
• To enable disk backup (NFS) accessible from both: SET BACKUP FILES FOR DEVICE TYPE DISK TO ACCESSIBLE;
Physical
Standby DB
Fast Recovery Area
RMAN
Backup
RMAN Backup
Archive to Tape
Fast Recovery Area
Recovery Catalog
RMAN & Data Guard: Offloading Backups To Standby
RMAN 12c Supports Multi-Tenant CDB/PDB Backup/Recovery
Direct To Tape
BCTBCT
Primary
DB
Redo Shipping
Automatic Block Repair (ADG)
11
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 11g: Standby Synchronization
• Verify the SCN from the standby (V$DATABASE)
SELECT CURRENT_SCN FROM V$DATABASE;
• On the primary, take incremental backup from that SCN
BACKUP INCREMENTAL FROM SCN <#> DATABASE …
• Copy the backups to the standby site (or) make the backups
accessible by standby)
• Catalog the backups, restore and recover the standby
Manual Process
Physical
Standby DB
Backup Location
RMAN
Incremental
Backup
RMAN Restore / Recover
Backup Location
Primary
Database
Copy Files Manually
Challenges
Multi-step manual process
 Requires incremental backups,
copy, restore
12
Recovery Catalog
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: Fast Standby Synchronization
• Connect to Standby as TARGET
• Simply run one command:
RECOVER DATABASE FROM SERVICE <PRIMARY TNS ALIAS> {USING
COMPRESSED BACKUPSET};
• Creates incremental backups as of current SCN on Primary,
pulls them over the network and applies on the Standby
Simplified Standby Sync-Up with Primary Database
Physical
Standby DB
Primary
Database
Benefits
Single step process
Over the network transfer
Faster and easier
No need for backup staging,
copying
Incrementals Applied Automatically
13
Recovery Catalog
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 11g: Primary Database Recovery
• To recover in the primary site
– Option #1 to use the local backup
– Option #2 is get backup from Standby
• Copy backups from standby and restore/recover
• Copy image copies from standby and perform SWITCH TO
COPY
Data File Recovery
Physical
Standby DB
Recovery Catalog
Backup Location
Restore/Recover
from Backup (or)
SWITCH COPY
RMAN Backup / Image Copy
Backup Location
Primary
Database
Copy Files Manually
Challenges
Multi-step manual process
 Requires recent backup from
standby
14
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: Fast Primary Database Recovery
• Connect to Primary as TARGET
• Simple one command to restore
– RESTORE DATAFILE <File No> FROM SERVICE <STANDBY TNS ALIAS>
{SECTION SIZE <#> COMPRESSED BACKUPSET};
• Creates full backup of the datafile from Standby, pulls them
over the network and restores on the Primary
• Proceed with normal recovery
Simplified Primary Restore/Recovery From Standby
Physical
Standby DB
Recovery Catalog
Primary
Database
Benefits
Reduces longer RTO for complete
recovery
Files copied using backup sets over
the network transfer
Faster and easier
No need for an additional backup
at Standby
Incrementals Applied Automatically
15
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
16
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 11g: Cross-Platform Transportable Tablespace (XTTS)
• Tablespace(s) are in read-only mode during the process
• Backups are done as image copies
• CONVERT TABLESPACE @ source (or) CONVERT DATAFILE @destination
• Separate Data Pump process to export metadata
• More suitable for smaller databases / low transaction rate applications
Regular XTTS: Steps Overview to Migrate USER_TBS
Source Database Destination Database
SYSTEM
USER_TBS
SYSTEM
Full Backup
Export Import
Read-only
Meta
Data
USER_TBS
17
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Source Database Destination Database
SYSTEM
USER_TBS
SYSTEM
Day 1: Full Backup
Export Import
Read-only
Meta
Data
USER_TBS
18
RMAN 11.2.0.4: XTTS Using Incremental Backup Method
Reduced Down Time For Large Databases: Process Overview
• Reduced downtime – as the tablespace is made read-only only at the end
• Image copy transfers
• Either CONVERT TABLESPACE @ source (or) CONVERT DATAFILE @destination
• Separate Data Pump process to export metadata
• Manual process, but made easy with MOS Note 1398952.1
Day 2-n: Incremental BackupsDay n: Final Incremental
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: XTTS Overall Improvements
• Now supports backup sets
– Unused block compression, smaller transport size, multi-section
• New Keyword: FOR TRANSPORT
• New Keywords: TO PLATFORM (at source) and FROM PLATFORM (destination)
– No longer require CONVERT TABLESPACE or CONVERT DATAFILE
– Can include tablespace metadata if that tablespace is read-only (final step)
– Preferred to perform the conversion at the destination using FROM PLATFORM
• New Keyword: ALLOW INCONSISTENT to create inconsistent backups of tablespace
(during incremental backups)
• XTTS with incremental backups reduces downtime up to 8X
• Backups from 10g, 11g can be restored to a 12c destination
Applicable to Both Regular XTTS and Using Incremental Backups
19
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: XTTS with Read-Only
1. Place the user tablespaces in read-only mode
ALTER TABLESPACE USER_TBS READ ONLY;
2. Check the tablespaces are self contained:
EXECUTE
DBMS_TTS.TRANSPORT_SET_CHECK(USER_TBS,
TRUE);
SELECT * FROM TRANSPORT_SET_VIOLATIONS;
3. Backup using FOR TRANSPORT syntax:
BACKUP FOR TRANSPORT
FORMAT '/tmp/xplat_backups/trans_ts.bck’
DATAPUMP FORMAT
'/tmp/xplat_backups/trans_ts_dmp.bck'
TABLESPACE USER_TBS;
4. Copy the backup to the Linux Server
Example: Transport USER_TBS from AIX to Linux
1. Create a ‘shell’ database (SYSTEM, SYSAUX, UNDO) &
tablespace users
2. Perform Restore operation:
RESTORE FROM PLATFORM ‘AIX-Based Systems (64-bit)’
FOREIGN TABLESPACE USER_TBS TO NEW
FROM BACKUPSET '/tmp/xplat_restores/trans_ts.bck'
DUMP FILE FROM BACKUPSET
'/tmp/xplat_restores/trans_ts_dmp.bck';
3. Data file blocks automatically endian-converted during
restore
4. Data Pump metadata dump file automatically imported
to plug in user tablespaces
5. Make the tablespace read writable
ALTER TABLESPACE USER_TBS READ WRITE;
Source (AIX) Destination (Linux)
• 20
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
• On destination Linux, create a shell destination
database(SYSTEM, SYSAUX, UNDO)
• On source AIX database
– Check self-contained using
DBMS_TTS.TRANSPORT_SET_CHECK
– Perform initial Level 0 and subsequent Level 1
backups using FOR TRANSPORT and ALLOW
INCONSISTENT
– Copy backups to the destination server
• On destination Linux
– Using Level 0 backup, restore and convert the
blocks using RESTORE FROM PLATFORM
– Subsequently, perform recovery using Level 1
backups using RECOVER FROM PLATFORM
Source tablespace(s) are in Read/Write mode Source tablespace(s) in Read-Only Mode
• On source AIX database,
– Place the tablespace(s) in READ-ONLY mode
– Perform a last incremental and metadata export
using FOR TRANSPORT and DATAPUMP entries
– Copy the backup files to the destination Linux
system
• On destination Linux system
– Recover the datafile from the incremental using
RECOVER FROM PLATFORM
– Extract the datapump data from the backupset
using RESTORE FROM PLATFORM, DUMP FILE and
DATA PUMP DESTINATION
– Plug-in the tablespace into the metadata using
IMPDP command and TRANSPORT DATAFILE
entries.
– Make the tablespace read/writable
RMAN 12c: XTTS with Incremental Backups
Example: Transport USER_TBS from AIX to Linux Using Incremental Backups
• 21
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Additional RMAN 12c Features
Overview
22
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: Table & Table Partition Recovery
• Simple RECOVER TABLE command to recover one or
more tables/partitions (most recent or older version)
from an RMAN backup
• Eliminates time and complexity associated with the
following manual steps:
1. Regular RMAN backups are taken using DISK
and/or SBT channels.
2. Upon RECOVER TABLE, an auxiliary instance is
started using the primary control
file,SYSTEM,SYSAUX,UNDO, and user tablespaces
containing the table(s).
3. Auxiliary instance is recovered to the desired
time/SCN.
4. Tables are imported by primary instance via
SQL*Net.
Primary
Instance
Auxiliary
Instance
Data Pump
Import
12c
RMAN
Backups
RECOVER TABLE SCOTT.EMP UNTIL SCN 123456
AUXILIARY DESTINATION '/tmp/oracle/recover‘;
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: Recovery Using Snapshot Copy
• Addresses 2 requirements
1. Snapshots can be taken without HOT BACKUP
2. Point-in-time recovery without scanning the whole data file using new
SNAPSHOT TIME keyword
• Storage subsystem should adhere to
 Database crash consistency
 Write ordering
 Registering snapshot time
• Recovery using Snapshot Copy
– Compete Recovery: Use RECOVER DATABASE;
– Point-in-time Recovery: Use SNAPSHOT TIME UNTIL {SCN | TIMESTAMP};
Point-in-time Recovery Using Storage Snapshots
RECOVER DATABASE UNTIL TIME "to_date('14-JUL-14 15.16.21','DD-MON-RR HH24:MI:SS')"
SNAPSHOT TIME "to_date('14-JUL-14 15.15.27','DD-MON-RR HH24:MI:SS')";
Prod Server Test Server
Prod Storage
Volume(s)
Read/Writable
Snapshot
24
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN 12c: Consolidate and Protect Data
Container Level (CDB) or Pluggable Database Level (PDB)
• New PLUGGABLE DATABASE and ROOT keywords
• Connect in RMAN as:
• ROOT common user: Backup, Restore, Recover CDB or selected PDBs
• PDB local user: Backup & Restore PDB (excludes archived logs)
• Backup commands as ROOT user:
BACKUP DATABASE; -- Backup CDB, including all PDBs
BACKUP (PLUGGABLE DATABASE <PDB1>, <PDB2>);
BACKUP TABLESPACE <PDB1>:<TBS1>, <PDB2>:<TBS1>;
• Restore commands as ROOT user:
RESTORE DATABASE; -- Restore CDB, including all PDBs
RESTORE PLUGGABLE DATABASE <PDB1>;
RESTORE TABLESPACE <PDB2>:<TBS1>;
• Recovery of CDB & PDB:
– Full: RECOVER {PLUGGABLE} DATABASE;
– PIT Recovery (PITR): RECOVER {PLUGGABLE} DATABASE <PDB/CDB> UNTIL …
– Open after PITR: ALTER {PLUGGABLE} DATABASE <PDB/CDB> OPEN RESETLOGS;
25
RMAN
Backup -
CDB
RMAN
Backup -
PDB
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
26
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Oracle Database Backup-as-a-Service
 Backup on-premise or Cloud Databases to
Oracle Database Backup Service hosted in
Oracle Public Cloud
 Cost effective, scalable cloud storage for
database backups (10.2 and above)
 End-to-end enterprise-grade data
encryption, compression and protection
• Clients: Data is always encrypted with
keys kept locally at client, optionally
compressed, and securely transmitted
• Cloud: Encrypted data is protected with 3-
way mirroring on every write
Offsite Backups with Simple and Low Cost Cloud Backup
Data Center
DBaaS
(Oracle Public Cloud)
Oracle Public Cloud
Try it today: http://cloud.oracle.com/database_backup
27
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Oracle Database Backup To Oracle Public Cloud
End-to-End Flow
Oracle Database
Cloud Backup
Module
(libopc.so)
Database, FRA
RMAN
WAN(HTTPS)
Oracle Database
Backup Service
Encryption &
Optional
Compression
28
1. Subscribe for Oracle Database Backup Service (or) Trial – https://cloud.oracle.com/database_backup
2. Download and install the RMAN SBT (Tape) module from OTN
3. RMAN uses this module (libopc.so) to backup to Oracle Database Backup Service
4. Configure RMAN to use this library
– RMAN> configure channel device type sbt parms='SBT_LIBRARY=libopc.so, SBT_PARMS=(OPC_PFILE=opcSID.ora)';
5. Perform backup, restore and recovery process using RMAN
6. RMAN encryption for backups enforced - keys kept locally on client (Password, TDE, Dual-mode)
7. Data securely transmitted to the cloud over HTTPS
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
• RMAN Compression
– Optional
• 10g: BASIC
• 11g and above: HIGH, BASIC, MEDIUM,LOW
– MEDIUM recommended
– No ACO licensing required
CONFIGURE COMPRESSION ALGORITHM ‘MEDIUM’;
BACKUP AS COMPRESSED BACKUPSET DATABASE PLUS
ARCHIVELOG;
• RMAN Encryption
– Mandatory
– Password, Transparent Data Encryption (TDE),
Dual-Mode
– No ASO licensing required
– Keys are to be kept local
– If TDE is used (preferred), then simply use SET
ENCRYPTION ON before backups and restores
– For password encryption:
SET ENCRYPTION ON IDENTIFIED BY ‘abc123’ ONLY;
– Before doing restore,
SET DECRYPTION IDENTIFIED BY ‘abc123’;
Use of RMAN Compression and Encryption
DEMO
29
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Example: Performing Backup & Recovery
BACKUP RESTORE/RECOVERY
30
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c: List of New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
31
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Zero Data Loss Recovery Appliance
ZDLRA Delta Store – massive DB of changes
•Stores validated, compressed DB changes on disk
•Fast restores to any point-in-time using deltas
•Built on Exadata scaling and resilience
•Enterprise Manager end-to-end control
ZDLRA
RMAN Delta Push
•DBs access and send only changes
• Minimal impact on production
•Data Guard-like real-time redo ship
instantly protects new transactions
Protected
Databases
Protects all DBs in Data Center
•Petabytes of data, 10.2.0.4 and
above
•No expensive DB backup agents
Offloads Tape
Backup
Replicates to Remote
ZDLRA
Oracle Public
Cloud
RMAN based Backup & Recovery
32
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Oracle Database Backup To Zero Data Loss Recovery Appliance
RMAN Configuration
ZDLRA Backup
Module
(libra.so)
Database, FRA
RMAN
10GbE / IB
ZDLRA
33
1. Download and install the RMAN SBT (Tape) module from OTN or from the Recovery
Appliance
2. RMAN uses this module (libra.so) as an interface to the Recovery Appliance
3. Configure RMAN to use this library (for example)
CONFIGURE CHANNEL DEVICE TYPE SBT PARMS='SBT_LIBRARY=libra.so,
SBT_PARMS=(RA_CLIENT_CONFIG_FILE=/orclhome/dbs/raSID.ora)';
4. Connect to ZDLRA as the catalog and perform backups
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Dashboard
34
Dashboard
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Protection Policy
35
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Protected Databases
36
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
RMAN - Summary
• We keep improving by adding new and
enhancing existing features:
Ease of use
Reducing downtime
Improved performance
• Address new ways to solve backup storage
requirement
Enabling cloud backups
• Shift the focus to RECOVERABILITY for the
entire data center
Recovery Appliance – built by RMAN development
Continuing the innovation
37
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Reference
• http://www.oracle.com/goto/rman
• http://www.oracle.com/goto/ha
• http://www.oracle.com/goto/maa
• https://cloud.oracle.com/database_backup
• Master RMAN Note (Doc ID 1116484.1)
Social
– http://blog.oracle.com/maa
– Follow us @OracleMAA
38
Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
Program Agenda
RMAN 12c New Features
Efficient & Faster Database Cloning
RMAN & Data Guard: Complete Protection
Cross Platform Migration Using XTTS
Low Cost Offsite Backup Storage to Oracle Public Cloud
Eliminate Data Loss using Recovery Appliance
Q & A
1
2
3
4
5
6
7
39
Rman 12c new_features

More Related Content

What's hot

Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder Oracle Scripts and Tools (2010)Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder
 
Rman Presentation
Rman PresentationRman Presentation
Rman Presentation
Rick van Ek
 
ASM
ASMASM
Oracle advanced queuing
Oracle advanced queuingOracle advanced queuing
Oracle advanced queuing
Gurpreet singh
 
[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力
[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力
[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力
オラクルエンジニア通信
 
Cluster Health Advisor (CHA) Deep Dive by Mark Scardina
Cluster Health Advisor (CHA)  Deep Dive by Mark ScardinaCluster Health Advisor (CHA)  Deep Dive by Mark Scardina
Cluster Health Advisor (CHA) Deep Dive by Mark Scardina
Markus Michalewicz
 
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesBest Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Markus Michalewicz
 
The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...
The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...
The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...
DataWorks Summit/Hadoop Summit
 
Oracle AWR Data mining
Oracle AWR Data miningOracle AWR Data mining
Oracle AWR Data mining
Yury Velikanov
 
Autonomous Database Explained
Autonomous Database ExplainedAutonomous Database Explained
Autonomous Database Explained
Neagu Alexandru Cristian
 
A Rusty introduction to Apache Arrow and how it applies to a time series dat...
A Rusty introduction to Apache Arrow and how it applies to a  time series dat...A Rusty introduction to Apache Arrow and how it applies to a  time series dat...
A Rusty introduction to Apache Arrow and how it applies to a time series dat...
Andrew Lamb
 
[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...
[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...
[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...
オラクルエンジニア通信
 
Oracle RAC features on Exadata
Oracle RAC features on ExadataOracle RAC features on Exadata
Oracle RAC features on Exadata
Anil Nair
 
Oracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion EditionOracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion Edition
Markus Michalewicz
 
Creating custom themes in AtoM
Creating custom themes in AtoMCreating custom themes in AtoM
Creating custom themes in AtoM
Artefactual Systems - AtoM
 
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on CephBuild an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
Rongze Zhu
 
Oracle db performance tuning
Oracle db performance tuningOracle db performance tuning
Oracle db performance tuningSimon Huang
 
Oracle Database Performance Tuning Concept
Oracle Database Performance Tuning ConceptOracle Database Performance Tuning Concept
Oracle Database Performance Tuning Concept
Chien Chung Shen
 
Oracle backup and recovery
Oracle backup and recoveryOracle backup and recovery
Oracle backup and recoveryYogiji Creations
 
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 VersionOracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
Markus Michalewicz
 

What's hot (20)

Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder Oracle Scripts and Tools (2010)Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder Oracle Scripts and Tools (2010)
 
Rman Presentation
Rman PresentationRman Presentation
Rman Presentation
 
ASM
ASMASM
ASM
 
Oracle advanced queuing
Oracle advanced queuingOracle advanced queuing
Oracle advanced queuing
 
[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力
[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力
[Oracle DBA & Developer Day 2012] 高可用性システムに適した管理性と性能を向上させるASM と RMAN の魅力
 
Cluster Health Advisor (CHA) Deep Dive by Mark Scardina
Cluster Health Advisor (CHA)  Deep Dive by Mark ScardinaCluster Health Advisor (CHA)  Deep Dive by Mark Scardina
Cluster Health Advisor (CHA) Deep Dive by Mark Scardina
 
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesBest Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
 
The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...
The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...
The Columnar Era: Leveraging Parquet, Arrow and Kudu for High-Performance Ana...
 
Oracle AWR Data mining
Oracle AWR Data miningOracle AWR Data mining
Oracle AWR Data mining
 
Autonomous Database Explained
Autonomous Database ExplainedAutonomous Database Explained
Autonomous Database Explained
 
A Rusty introduction to Apache Arrow and how it applies to a time series dat...
A Rusty introduction to Apache Arrow and how it applies to a  time series dat...A Rusty introduction to Apache Arrow and how it applies to a  time series dat...
A Rusty introduction to Apache Arrow and how it applies to a time series dat...
 
[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...
[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...
[Oracle Cloud Days Tokyo 2015] Oracle Database 12c最新情報 ~Maximum Availability ...
 
Oracle RAC features on Exadata
Oracle RAC features on ExadataOracle RAC features on Exadata
Oracle RAC features on Exadata
 
Oracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion EditionOracle RAC Internals - The Cache Fusion Edition
Oracle RAC Internals - The Cache Fusion Edition
 
Creating custom themes in AtoM
Creating custom themes in AtoMCreating custom themes in AtoM
Creating custom themes in AtoM
 
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on CephBuild an High-Performance and High-Durable Block Storage Service Based on Ceph
Build an High-Performance and High-Durable Block Storage Service Based on Ceph
 
Oracle db performance tuning
Oracle db performance tuningOracle db performance tuning
Oracle db performance tuning
 
Oracle Database Performance Tuning Concept
Oracle Database Performance Tuning ConceptOracle Database Performance Tuning Concept
Oracle Database Performance Tuning Concept
 
Oracle backup and recovery
Oracle backup and recoveryOracle backup and recovery
Oracle backup and recovery
 
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 VersionOracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
 

Similar to Rman 12c new_features

Disaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle ClouduDisaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle Cloudu
MarketingArrowECS_CZ
 
Oracle Backup Solutions Overview August 2018
Oracle Backup Solutions Overview August 2018Oracle Backup Solutions Overview August 2018
Oracle Backup Solutions Overview August 2018
Dan Glasscock
 
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Glen Hawkins
 
Maximum Availability Architecture - Best Practices for Oracle Database 19c
Maximum Availability Architecture - Best Practices for Oracle Database 19cMaximum Availability Architecture - Best Practices for Oracle Database 19c
Maximum Availability Architecture - Best Practices for Oracle Database 19c
Glen Hawkins
 
Why oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19cWhy oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19c
Satishbabu Gunukula
 
Oracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for ConsolidationOracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for Consolidation
Yudi Herdiana
 
Using Snap Clone with Enterprise Manager 12c
Using Snap Clone with Enterprise Manager 12cUsing Snap Clone with Enterprise Manager 12c
Using Snap Clone with Enterprise Manager 12c
Pete Sharman
 
Oracle DataGuard Online Training in USA | INDIA
Oracle DataGuard Online Training in USA | INDIAOracle DataGuard Online Training in USA | INDIA
Oracle DataGuard Online Training in USA | INDIA
Xoom Trainings
 
The Good, The Bad and the Ugly
The Good, The Bad and the UglyThe Good, The Bad and the Ugly
The Good, The Bad and the Ugly
Roy Salazar
 
twp-oracledatabasebackupservice-2183633
twp-oracledatabasebackupservice-2183633twp-oracledatabasebackupservice-2183633
twp-oracledatabasebackupservice-2183633Arush Jain
 
C7 engineered data_protection_for_oracle_databases
C7 engineered data_protection_for_oracle_databasesC7 engineered data_protection_for_oracle_databases
C7 engineered data_protection_for_oracle_databases
Dr. Wilfred Lin (Ph.D.)
 
zdlra-db-migration-5188715.pdf
zdlra-db-migration-5188715.pdfzdlra-db-migration-5188715.pdf
zdlra-db-migration-5188715.pdf
Ahmed Abdellatif
 
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13cClone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Alfredo Krieg
 
What’s new in oracle 12c recovery manager (rman)
What’s new in oracle 12c recovery manager (rman)What’s new in oracle 12c recovery manager (rman)
What’s new in oracle 12c recovery manager (rman)
Satishbabu Gunukula
 
Oracle data guard for beginners
Oracle data guard for beginnersOracle data guard for beginners
Oracle data guard for beginners
Pini Dibask
 
Backup_exadata_update
Backup_exadata_updateBackup_exadata_update
Backup_exadata_update
Fran Navarro
 
Oracle12c data guard farsync and whats new
Oracle12c data guard farsync and whats newOracle12c data guard farsync and whats new
Oracle12c data guard farsync and whats newNassyam Basha
 
New Not Your Father's Enterprise Manager
New Not Your Father's Enterprise ManagerNew Not Your Father's Enterprise Manager
New Not Your Father's Enterprise Manager
Kellyn Pot'Vin-Gorman
 
MAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19cMAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19c
Markus Michalewicz
 

Similar to Rman 12c new_features (20)

con8832-cloudha-2811114.pdf
con8832-cloudha-2811114.pdfcon8832-cloudha-2811114.pdf
con8832-cloudha-2811114.pdf
 
Disaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle ClouduDisaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle Cloudu
 
Oracle Backup Solutions Overview August 2018
Oracle Backup Solutions Overview August 2018Oracle Backup Solutions Overview August 2018
Oracle Backup Solutions Overview August 2018
 
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive
 
Maximum Availability Architecture - Best Practices for Oracle Database 19c
Maximum Availability Architecture - Best Practices for Oracle Database 19cMaximum Availability Architecture - Best Practices for Oracle Database 19c
Maximum Availability Architecture - Best Practices for Oracle Database 19c
 
Why oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19cWhy oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19c
 
Oracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for ConsolidationOracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for Consolidation
 
Using Snap Clone with Enterprise Manager 12c
Using Snap Clone with Enterprise Manager 12cUsing Snap Clone with Enterprise Manager 12c
Using Snap Clone with Enterprise Manager 12c
 
Oracle DataGuard Online Training in USA | INDIA
Oracle DataGuard Online Training in USA | INDIAOracle DataGuard Online Training in USA | INDIA
Oracle DataGuard Online Training in USA | INDIA
 
The Good, The Bad and the Ugly
The Good, The Bad and the UglyThe Good, The Bad and the Ugly
The Good, The Bad and the Ugly
 
twp-oracledatabasebackupservice-2183633
twp-oracledatabasebackupservice-2183633twp-oracledatabasebackupservice-2183633
twp-oracledatabasebackupservice-2183633
 
C7 engineered data_protection_for_oracle_databases
C7 engineered data_protection_for_oracle_databasesC7 engineered data_protection_for_oracle_databases
C7 engineered data_protection_for_oracle_databases
 
zdlra-db-migration-5188715.pdf
zdlra-db-migration-5188715.pdfzdlra-db-migration-5188715.pdf
zdlra-db-migration-5188715.pdf
 
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13cClone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
 
What’s new in oracle 12c recovery manager (rman)
What’s new in oracle 12c recovery manager (rman)What’s new in oracle 12c recovery manager (rman)
What’s new in oracle 12c recovery manager (rman)
 
Oracle data guard for beginners
Oracle data guard for beginnersOracle data guard for beginners
Oracle data guard for beginners
 
Backup_exadata_update
Backup_exadata_updateBackup_exadata_update
Backup_exadata_update
 
Oracle12c data guard farsync and whats new
Oracle12c data guard farsync and whats newOracle12c data guard farsync and whats new
Oracle12c data guard farsync and whats new
 
New Not Your Father's Enterprise Manager
New Not Your Father's Enterprise ManagerNew Not Your Father's Enterprise Manager
New Not Your Father's Enterprise Manager
 
MAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19cMAA Best Practices for Oracle Database 19c
MAA Best Practices for Oracle Database 19c
 

More from Nabi Abdul

Rman workshop short
Rman workshop shortRman workshop short
Rman workshop short
Nabi Abdul
 
Rman script build_space_issue
Rman script build_space_issueRman script build_space_issue
Rman script build_space_issue
Nabi Abdul
 
Rman backup and recovery 11g new features
Rman backup and recovery 11g new featuresRman backup and recovery 11g new features
Rman backup and recovery 11g new features
Nabi Abdul
 
Rman 11g new features
Rman 11g new featuresRman 11g new features
Rman 11g new features
Nabi Abdul
 
Oracle 11g nf_1.0
Oracle 11g nf_1.0Oracle 11g nf_1.0
Oracle 11g nf_1.0
Nabi Abdul
 
Duplicate database advanced method for distributing datafiles into multiple l...
Duplicate database advanced method for distributing datafiles into multiple l...Duplicate database advanced method for distributing datafiles into multiple l...
Duplicate database advanced method for distributing datafiles into multiple l...
Nabi Abdul
 

More from Nabi Abdul (6)

Rman workshop short
Rman workshop shortRman workshop short
Rman workshop short
 
Rman script build_space_issue
Rman script build_space_issueRman script build_space_issue
Rman script build_space_issue
 
Rman backup and recovery 11g new features
Rman backup and recovery 11g new featuresRman backup and recovery 11g new features
Rman backup and recovery 11g new features
 
Rman 11g new features
Rman 11g new featuresRman 11g new features
Rman 11g new features
 
Oracle 11g nf_1.0
Oracle 11g nf_1.0Oracle 11g nf_1.0
Oracle 11g nf_1.0
 
Duplicate database advanced method for distributing datafiles into multiple l...
Duplicate database advanced method for distributing datafiles into multiple l...Duplicate database advanced method for distributing datafiles into multiple l...
Duplicate database advanced method for distributing datafiles into multiple l...
 

Recently uploaded

Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
kimdan468
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 

Recently uploaded (20)

Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 

Rman 12c new_features

  • 1.
  • 2. Oracle Recovery Manager 12c Best Practices Sridhar Ranganathan Principal Product Manager Oracle Database – High Availability October 1, 2014 Copyright © 2014, Oracle and/or its affiliates. All rights reserved. |
  • 3. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. 3
  • 4. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 4
  • 5. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 5
  • 6. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | • Fine grained Recovery Table / Table partitions • Support for Multitenant Database Container and Pluggable Databases Backup and recovery • Improved Performance Faster cloning capability Faster recovery over network Multi-section support for incremental & image copies • Simplified Platform Migration Enhanced Cross-platform process • Separation of Duty SYSBACKUP privilege for RMAN • Storage Snapshot Optimization Point-in-time recovery from storage snapshots • SQL interface in RMAN Directly run SQL commands within RMAN Oracle RMAN 12c: List of New Features 6
  • 7. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 7
  • 8. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 11g: Active DUPLICATE • ACTIVE DUPLICATE introduced in 11g • Create a clone (or) a standby database from the production DB as of the current time / SCN • Eliminates need for a backup staging • Utilizes SOURCE (TARGET) database channels to PUSH data files and archived logs to clone (AUXILIARY) database server • Data files are copied as image copies One-Command Database Cloning Push Data Files, Archived Logs Source Database Clone Database 11g 11g Challenges Large transfers due to image copies Network could be a bottleneck Takes longer to duplicate DUPLICATE TARGET DATABASE TO cloneDB {FOR STANDBY} FROM ACTIVE DATABASE; 8
  • 9. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: New RMAN Active DUPLICATE • Create a clone (or) a standby database from the production DB as of the current time / SCN • Eliminates a need for a backup staging • Uses Auxiliary Channels (clone side) to PULL data from the source database • Data files are copied as backup sets – Unused block compression, multi-channel, compression, encryption • New keyword not open the clone automatically clone: NOOPEN Network Efficient Duplication Pulls Data Files, Archived Logs Backup Sets Source Database Clone Database 12c 12c Benefits Reduced transfer sizes Network efficient & secured Faster to create a clone DUPLICATE TARGET DATABASE TO cloneDB FROM ACTIVE DATABASE USING COMPRESSED BACKUPSET SECTION SIZE 100M NOOPEN; 9
  • 10. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 10
  • 11. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | • External Recovery Catalog required when using RMAN in a Data Guard environment • Primary: Enable Block Change Tracking (BCT), Backup sets at local FRA • Standby: Enable BCT, Image copies at local FRA + Daily & Weekly backups from FRA to Tape (or) Direct backup to Tape • Tape backups made accessible for both Primary an Standby by the catalog by default • To enable disk backup (NFS) accessible from both: SET BACKUP FILES FOR DEVICE TYPE DISK TO ACCESSIBLE; Physical Standby DB Fast Recovery Area RMAN Backup RMAN Backup Archive to Tape Fast Recovery Area Recovery Catalog RMAN & Data Guard: Offloading Backups To Standby RMAN 12c Supports Multi-Tenant CDB/PDB Backup/Recovery Direct To Tape BCTBCT Primary DB Redo Shipping Automatic Block Repair (ADG) 11
  • 12. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 11g: Standby Synchronization • Verify the SCN from the standby (V$DATABASE) SELECT CURRENT_SCN FROM V$DATABASE; • On the primary, take incremental backup from that SCN BACKUP INCREMENTAL FROM SCN <#> DATABASE … • Copy the backups to the standby site (or) make the backups accessible by standby) • Catalog the backups, restore and recover the standby Manual Process Physical Standby DB Backup Location RMAN Incremental Backup RMAN Restore / Recover Backup Location Primary Database Copy Files Manually Challenges Multi-step manual process  Requires incremental backups, copy, restore 12 Recovery Catalog
  • 13. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: Fast Standby Synchronization • Connect to Standby as TARGET • Simply run one command: RECOVER DATABASE FROM SERVICE <PRIMARY TNS ALIAS> {USING COMPRESSED BACKUPSET}; • Creates incremental backups as of current SCN on Primary, pulls them over the network and applies on the Standby Simplified Standby Sync-Up with Primary Database Physical Standby DB Primary Database Benefits Single step process Over the network transfer Faster and easier No need for backup staging, copying Incrementals Applied Automatically 13 Recovery Catalog
  • 14. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 11g: Primary Database Recovery • To recover in the primary site – Option #1 to use the local backup – Option #2 is get backup from Standby • Copy backups from standby and restore/recover • Copy image copies from standby and perform SWITCH TO COPY Data File Recovery Physical Standby DB Recovery Catalog Backup Location Restore/Recover from Backup (or) SWITCH COPY RMAN Backup / Image Copy Backup Location Primary Database Copy Files Manually Challenges Multi-step manual process  Requires recent backup from standby 14
  • 15. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: Fast Primary Database Recovery • Connect to Primary as TARGET • Simple one command to restore – RESTORE DATAFILE <File No> FROM SERVICE <STANDBY TNS ALIAS> {SECTION SIZE <#> COMPRESSED BACKUPSET}; • Creates full backup of the datafile from Standby, pulls them over the network and restores on the Primary • Proceed with normal recovery Simplified Primary Restore/Recovery From Standby Physical Standby DB Recovery Catalog Primary Database Benefits Reduces longer RTO for complete recovery Files copied using backup sets over the network transfer Faster and easier No need for an additional backup at Standby Incrementals Applied Automatically 15
  • 16. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 16
  • 17. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 11g: Cross-Platform Transportable Tablespace (XTTS) • Tablespace(s) are in read-only mode during the process • Backups are done as image copies • CONVERT TABLESPACE @ source (or) CONVERT DATAFILE @destination • Separate Data Pump process to export metadata • More suitable for smaller databases / low transaction rate applications Regular XTTS: Steps Overview to Migrate USER_TBS Source Database Destination Database SYSTEM USER_TBS SYSTEM Full Backup Export Import Read-only Meta Data USER_TBS 17
  • 18. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Source Database Destination Database SYSTEM USER_TBS SYSTEM Day 1: Full Backup Export Import Read-only Meta Data USER_TBS 18 RMAN 11.2.0.4: XTTS Using Incremental Backup Method Reduced Down Time For Large Databases: Process Overview • Reduced downtime – as the tablespace is made read-only only at the end • Image copy transfers • Either CONVERT TABLESPACE @ source (or) CONVERT DATAFILE @destination • Separate Data Pump process to export metadata • Manual process, but made easy with MOS Note 1398952.1 Day 2-n: Incremental BackupsDay n: Final Incremental
  • 19. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: XTTS Overall Improvements • Now supports backup sets – Unused block compression, smaller transport size, multi-section • New Keyword: FOR TRANSPORT • New Keywords: TO PLATFORM (at source) and FROM PLATFORM (destination) – No longer require CONVERT TABLESPACE or CONVERT DATAFILE – Can include tablespace metadata if that tablespace is read-only (final step) – Preferred to perform the conversion at the destination using FROM PLATFORM • New Keyword: ALLOW INCONSISTENT to create inconsistent backups of tablespace (during incremental backups) • XTTS with incremental backups reduces downtime up to 8X • Backups from 10g, 11g can be restored to a 12c destination Applicable to Both Regular XTTS and Using Incremental Backups 19
  • 20. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: XTTS with Read-Only 1. Place the user tablespaces in read-only mode ALTER TABLESPACE USER_TBS READ ONLY; 2. Check the tablespaces are self contained: EXECUTE DBMS_TTS.TRANSPORT_SET_CHECK(USER_TBS, TRUE); SELECT * FROM TRANSPORT_SET_VIOLATIONS; 3. Backup using FOR TRANSPORT syntax: BACKUP FOR TRANSPORT FORMAT '/tmp/xplat_backups/trans_ts.bck’ DATAPUMP FORMAT '/tmp/xplat_backups/trans_ts_dmp.bck' TABLESPACE USER_TBS; 4. Copy the backup to the Linux Server Example: Transport USER_TBS from AIX to Linux 1. Create a ‘shell’ database (SYSTEM, SYSAUX, UNDO) & tablespace users 2. Perform Restore operation: RESTORE FROM PLATFORM ‘AIX-Based Systems (64-bit)’ FOREIGN TABLESPACE USER_TBS TO NEW FROM BACKUPSET '/tmp/xplat_restores/trans_ts.bck' DUMP FILE FROM BACKUPSET '/tmp/xplat_restores/trans_ts_dmp.bck'; 3. Data file blocks automatically endian-converted during restore 4. Data Pump metadata dump file automatically imported to plug in user tablespaces 5. Make the tablespace read writable ALTER TABLESPACE USER_TBS READ WRITE; Source (AIX) Destination (Linux) • 20
  • 21. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | • On destination Linux, create a shell destination database(SYSTEM, SYSAUX, UNDO) • On source AIX database – Check self-contained using DBMS_TTS.TRANSPORT_SET_CHECK – Perform initial Level 0 and subsequent Level 1 backups using FOR TRANSPORT and ALLOW INCONSISTENT – Copy backups to the destination server • On destination Linux – Using Level 0 backup, restore and convert the blocks using RESTORE FROM PLATFORM – Subsequently, perform recovery using Level 1 backups using RECOVER FROM PLATFORM Source tablespace(s) are in Read/Write mode Source tablespace(s) in Read-Only Mode • On source AIX database, – Place the tablespace(s) in READ-ONLY mode – Perform a last incremental and metadata export using FOR TRANSPORT and DATAPUMP entries – Copy the backup files to the destination Linux system • On destination Linux system – Recover the datafile from the incremental using RECOVER FROM PLATFORM – Extract the datapump data from the backupset using RESTORE FROM PLATFORM, DUMP FILE and DATA PUMP DESTINATION – Plug-in the tablespace into the metadata using IMPDP command and TRANSPORT DATAFILE entries. – Make the tablespace read/writable RMAN 12c: XTTS with Incremental Backups Example: Transport USER_TBS from AIX to Linux Using Incremental Backups • 21
  • 22. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Additional RMAN 12c Features Overview 22
  • 23. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: Table & Table Partition Recovery • Simple RECOVER TABLE command to recover one or more tables/partitions (most recent or older version) from an RMAN backup • Eliminates time and complexity associated with the following manual steps: 1. Regular RMAN backups are taken using DISK and/or SBT channels. 2. Upon RECOVER TABLE, an auxiliary instance is started using the primary control file,SYSTEM,SYSAUX,UNDO, and user tablespaces containing the table(s). 3. Auxiliary instance is recovered to the desired time/SCN. 4. Tables are imported by primary instance via SQL*Net. Primary Instance Auxiliary Instance Data Pump Import 12c RMAN Backups RECOVER TABLE SCOTT.EMP UNTIL SCN 123456 AUXILIARY DESTINATION '/tmp/oracle/recover‘;
  • 24. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: Recovery Using Snapshot Copy • Addresses 2 requirements 1. Snapshots can be taken without HOT BACKUP 2. Point-in-time recovery without scanning the whole data file using new SNAPSHOT TIME keyword • Storage subsystem should adhere to  Database crash consistency  Write ordering  Registering snapshot time • Recovery using Snapshot Copy – Compete Recovery: Use RECOVER DATABASE; – Point-in-time Recovery: Use SNAPSHOT TIME UNTIL {SCN | TIMESTAMP}; Point-in-time Recovery Using Storage Snapshots RECOVER DATABASE UNTIL TIME "to_date('14-JUL-14 15.16.21','DD-MON-RR HH24:MI:SS')" SNAPSHOT TIME "to_date('14-JUL-14 15.15.27','DD-MON-RR HH24:MI:SS')"; Prod Server Test Server Prod Storage Volume(s) Read/Writable Snapshot 24
  • 25. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN 12c: Consolidate and Protect Data Container Level (CDB) or Pluggable Database Level (PDB) • New PLUGGABLE DATABASE and ROOT keywords • Connect in RMAN as: • ROOT common user: Backup, Restore, Recover CDB or selected PDBs • PDB local user: Backup & Restore PDB (excludes archived logs) • Backup commands as ROOT user: BACKUP DATABASE; -- Backup CDB, including all PDBs BACKUP (PLUGGABLE DATABASE <PDB1>, <PDB2>); BACKUP TABLESPACE <PDB1>:<TBS1>, <PDB2>:<TBS1>; • Restore commands as ROOT user: RESTORE DATABASE; -- Restore CDB, including all PDBs RESTORE PLUGGABLE DATABASE <PDB1>; RESTORE TABLESPACE <PDB2>:<TBS1>; • Recovery of CDB & PDB: – Full: RECOVER {PLUGGABLE} DATABASE; – PIT Recovery (PITR): RECOVER {PLUGGABLE} DATABASE <PDB/CDB> UNTIL … – Open after PITR: ALTER {PLUGGABLE} DATABASE <PDB/CDB> OPEN RESETLOGS; 25 RMAN Backup - CDB RMAN Backup - PDB
  • 26. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 26
  • 27. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Oracle Database Backup-as-a-Service  Backup on-premise or Cloud Databases to Oracle Database Backup Service hosted in Oracle Public Cloud  Cost effective, scalable cloud storage for database backups (10.2 and above)  End-to-end enterprise-grade data encryption, compression and protection • Clients: Data is always encrypted with keys kept locally at client, optionally compressed, and securely transmitted • Cloud: Encrypted data is protected with 3- way mirroring on every write Offsite Backups with Simple and Low Cost Cloud Backup Data Center DBaaS (Oracle Public Cloud) Oracle Public Cloud Try it today: http://cloud.oracle.com/database_backup 27
  • 28. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Oracle Database Backup To Oracle Public Cloud End-to-End Flow Oracle Database Cloud Backup Module (libopc.so) Database, FRA RMAN WAN(HTTPS) Oracle Database Backup Service Encryption & Optional Compression 28 1. Subscribe for Oracle Database Backup Service (or) Trial – https://cloud.oracle.com/database_backup 2. Download and install the RMAN SBT (Tape) module from OTN 3. RMAN uses this module (libopc.so) to backup to Oracle Database Backup Service 4. Configure RMAN to use this library – RMAN> configure channel device type sbt parms='SBT_LIBRARY=libopc.so, SBT_PARMS=(OPC_PFILE=opcSID.ora)'; 5. Perform backup, restore and recovery process using RMAN 6. RMAN encryption for backups enforced - keys kept locally on client (Password, TDE, Dual-mode) 7. Data securely transmitted to the cloud over HTTPS
  • 29. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | • RMAN Compression – Optional • 10g: BASIC • 11g and above: HIGH, BASIC, MEDIUM,LOW – MEDIUM recommended – No ACO licensing required CONFIGURE COMPRESSION ALGORITHM ‘MEDIUM’; BACKUP AS COMPRESSED BACKUPSET DATABASE PLUS ARCHIVELOG; • RMAN Encryption – Mandatory – Password, Transparent Data Encryption (TDE), Dual-Mode – No ASO licensing required – Keys are to be kept local – If TDE is used (preferred), then simply use SET ENCRYPTION ON before backups and restores – For password encryption: SET ENCRYPTION ON IDENTIFIED BY ‘abc123’ ONLY; – Before doing restore, SET DECRYPTION IDENTIFIED BY ‘abc123’; Use of RMAN Compression and Encryption DEMO 29
  • 30. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Example: Performing Backup & Recovery BACKUP RESTORE/RECOVERY 30
  • 31. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c: List of New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 31
  • 32. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Zero Data Loss Recovery Appliance ZDLRA Delta Store – massive DB of changes •Stores validated, compressed DB changes on disk •Fast restores to any point-in-time using deltas •Built on Exadata scaling and resilience •Enterprise Manager end-to-end control ZDLRA RMAN Delta Push •DBs access and send only changes • Minimal impact on production •Data Guard-like real-time redo ship instantly protects new transactions Protected Databases Protects all DBs in Data Center •Petabytes of data, 10.2.0.4 and above •No expensive DB backup agents Offloads Tape Backup Replicates to Remote ZDLRA Oracle Public Cloud RMAN based Backup & Recovery 32
  • 33. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Oracle Database Backup To Zero Data Loss Recovery Appliance RMAN Configuration ZDLRA Backup Module (libra.so) Database, FRA RMAN 10GbE / IB ZDLRA 33 1. Download and install the RMAN SBT (Tape) module from OTN or from the Recovery Appliance 2. RMAN uses this module (libra.so) as an interface to the Recovery Appliance 3. Configure RMAN to use this library (for example) CONFIGURE CHANNEL DEVICE TYPE SBT PARMS='SBT_LIBRARY=libra.so, SBT_PARMS=(RA_CLIENT_CONFIG_FILE=/orclhome/dbs/raSID.ora)'; 4. Connect to ZDLRA as the catalog and perform backups
  • 34. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Dashboard 34 Dashboard
  • 35. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Protection Policy 35
  • 36. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Protected Databases 36
  • 37. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | RMAN - Summary • We keep improving by adding new and enhancing existing features: Ease of use Reducing downtime Improved performance • Address new ways to solve backup storage requirement Enabling cloud backups • Shift the focus to RECOVERABILITY for the entire data center Recovery Appliance – built by RMAN development Continuing the innovation 37
  • 38. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Reference • http://www.oracle.com/goto/rman • http://www.oracle.com/goto/ha • http://www.oracle.com/goto/maa • https://cloud.oracle.com/database_backup • Master RMAN Note (Doc ID 1116484.1) Social – http://blog.oracle.com/maa – Follow us @OracleMAA 38
  • 39. Copyright © 2014, Oracle and/or its affiliates. All rights reserved. | Program Agenda RMAN 12c New Features Efficient & Faster Database Cloning RMAN & Data Guard: Complete Protection Cross Platform Migration Using XTTS Low Cost Offsite Backup Storage to Oracle Public Cloud Eliminate Data Loss using Recovery Appliance Q & A 1 2 3 4 5 6 7 39