SlideShare une entreprise Scribd logo
1  sur  30
Télécharger pour lire hors ligne
Oracle Backup Solutions Overview
St. Louis Oracle Users Group
August 9, 2018
Dan Glasscock
North American Sales
Strategy Lead, Oracle Database Cloud
Copyright © 2018, 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.
2
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Agenda
• Solution Overview
• Recovery Manager
• Flash Recovery Area
• Oracle Database Backup Cloud Service
• Oracle Recovery Appliance
• ZFS Storage Appliance for Backup
3
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Backup and Recovery Solution Portfolio
4
Oracle Cloud
Protected Files
ExaCS
DBCS
Instantiate
into
DBCS/ExaCS
DB Backup Cloud Service
Secure Backup
On-Premises
Oracle Cloud
Storage
Compression
& Encryption
Backup to and Recover from On-Premises or Oracle Cloud
Protected Databases
Cloud @ Customer
Filesystem
RMAN: Built-in backup &
recovery engine for the Oracle
database which provides
performant, efficient
and dependable protection.
Recovery Appliance:
Engineered System purpose-
built for data center-wide Oracle
database protection which
ensures zero data loss, verifies
backup integrity, and reduces
data protection overhead by
eliminating repeated full
backups.
DB Backup Cloud Service:
Secure & scalable Oracle Cloud
Service providing cost effective
storage for long-term retention
& compliance of RMAN
backups.
Secure Backup: Centralized
disk, tape and cloud backup
management which provides
heterogeneous filesystem
protection for the entire data
center.
1
1
2
2
3
3
4
4
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Common RMAN Configuration Settings
Description Benefits Cons
Archived log
mode
•Ability to recover to any point in time
•Enables online backup operations
Requires more storage
space to accommodate
both online redo and
archived logs
Block Change
Tracking (BCT)
Enables fast incremental backups. Without BCT, RMAN
would have to scan the entire database to determine which
blocks are changed during incremental backups.
MINIMAL overhead on
the database server
Control file
automatic
backup
•Database recoverability even if current control file, recovery
catalog is inaccessible.
•When in archived log mode, it is backed up automatically
when database structural changes are updated.
None
….Not Set By Default
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Backup Retention Period
• RMAN retention policy options applicable to disk AND tape:
1. Redundancy ( how many copies ; default is REDUNDANCY 1)
2. Recovery window ( for example, 7 days)
• Long-term RMAN backups (outside of set retention policies) may be created
with KEEP FOREVER or with an UNTIL clause
• Issue RMAN DELETE OBSOLETE command regularly which
– DISK : Deletes backup related files which are no longer needed
– SBT : Updates media manager to which backup pieces are no longer needed
to meet user-configured RMAN retention settings
Recoverability
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Recovery Catalog
• By default, RMAN’s metadata stored in the control file
• Having a separate Recovery catalog provides the following
advantages:
– Central RMAN metadata repository for one or more databases
– Enables use of RMAN stored scripts instead of just command line
– Enables creation of customized reports for all registered targets
– Centralizes management and storage of multiple databases (mixed database
versions and/or platforms)
– Enables use of the KEEP FOREVER clause
• No licensing fee for an RMAN catalog database
• Common strategy is to co-locate the RMAN, OSB and EM catalogs on
the same server
RMAN’s Schema
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
RMAN Good to Know Stuff
True or False
You can restart RMAN backups from an approximate point of failure?
• RMAN backups are restart-able from an approximate point of failure
–Smallest size of restartability is a backup set
–BACKUP DATABASE NOT BACKED UP SINCE TIME 'SYSDATE-1';
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
RMAN Good to Know RMAN – Cont’d
• RMAN command BACKUP RECOVERY AREA;
– RMAN disk or sbt destination (D2D2T)
– Optimized backup by default
– Always a backup set backup type
• RMAN backup encryption has license restrictions:
– Directly to disk requires Oracle Advanced Security Option (ASO)
– Directly to tape requires Oracle Secure Backup (OSB)
– RMAN compression
– BASIC is free
– HIGH, MEDIUM, LOW require Advanced Compression Option (ACO)
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Agenda
• Solution Overview
• Recovery Manager
• Flash Recovery Area
• Oracle Database Backup Cloud Service
• Oracle Recovery Appliance
• ZFS Storage Appliance for Backup
10
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
What is Fast Recovery Area (FRA) ?
• Unified near-line storage location for all recovery files and recovery related activities in
an Oracle Database
– Centralized location for control file copies, multiplexed online redo logs, archived logs, flashback logs,
backups (image copy or backup set)
– FRA can be defined as a directory, file system, or ASM disk group
– A single recovery area can be shared by more than one database
– Initialization parameters db_recovery_file_dest & db_recovery_file_dest_size
• FRA may be on tier 2+ storage although not necessarily recommended
– Slower storage could effect production database performance
• Online redo logs, archived logs, Flashback logs and controlfile
RMAN Managed Disk Storage Location
NAME TYPE VALUE
------------------------------------ ----------- --------------------------
db_recovery_file_dest string /oradata/prod/fra
db_recovery_file_dest_size big integer 500G
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Fast Recovery Area Sizing
• Archived logs - Estimate total size of all archived logs generated between
successive backups on the busiest days x 2 (in case of unexpected redo spikes)
• Flashback logs - Add in {Redo rate x Flashback retention target time x 2}
• Incremental backups - Add in their estimated sizes
• On-disk image copy - Add in size of the database minus size of temporary files
– When using an incrementally updated backup strategy (incremental forever after initial full)
• Full backup set backup(s)
– When using a full / incremental backup strategy
• Further details:
– http://docs.oracle.com/cd/E16655_01/backup.121/e17630/rcmconfb.htm#BRADV8183
Exercise in Math – Depends on What You Want to Keep
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
FRA – Instant Recovery
How do you recover a Tablespace with a corrupt Data file?
Without an FRA
1. Take the tablespace offline
2. Restore the Datafile from a
backup
3. Recover the Datafile
4. Place the tablespace back online
With FRA
1. Take the tablespace offline.
2. Switch to FRA Copy
3. Recover Datafile
4. Place the tablespace online.
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Agenda
• Solution Overview
• Recovery Manager
• Flash Recovery Area
• Oracle Database Backup Cloud Service
• Oracle Recovery Appliance
• ZFS Storage Appliance for Backup
14
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Oracle Database Backup Cloud Service (PaaS)
15
Low-Cost Offsite Cloud Storage for Oracle Database Backups
Firewall
On-Premises
Databases 10.2 and
above
Instant Offsite Storage
Cost Effective ($33/TB/Month)
On-demand Scalability
End-to-End Security
RMAN Encryption
RMAN Compression
3-Way Protection for HA
Geo-Replication for DR
24x7 Data Availability
Platform as a Service
Oracle Database Backup Cloud Service
Oracle DBaaS / Exadata Cloud Service
RMAN driven Backup
& Recovery
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Backup Service: For your On-Premises Database Backups
16
Simple 4-Step Process
Cloud
Subscription
• Metered / Non-Metered
• Storage Capacity
• Identity Domain
• Service Name
• User ID/Password
• Geo-Replication
1 2 3 4
Install RMAN
Module
• Download
Installer from
OTN
• Run Installer
on the DB
Server
Configure
RMAN
• Tape (SBT)
Interface
• Encryption
• Compression
• Parallelism
Perform Backup &
Recovery
• Schedule full &
Incremental backups
• Restore & Recovery
on-demand
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
End-To-End Flow
Recovery
Manager
RMAN
Cloud
Module*
Oracle
Wallet*
OPC
Config File
Oracle
Database Backup
Cloud Service
Database, FRA
opc_host=https://odbs_dom.
storage.oraclecloud.com/odbs_svc-odbs_dom
opc_wallet='location=file:/abc/opcwlt‘
opc_container=‘myContainer’
$ rman target /
RMAN> CONFIGURE CHANNEL DEVICE TYPE SBT PARMS='SBT_LIBRARY=
/opc/libopc.so’ , SBT_PARMS=(OPC_PFILE=/opc/opcSID.ora)';
RMAN> CONFIGURE DEVICE TYPE SBT PARALLELISM 8;
RMAN> SET ENCRYPTION ON IDENTIFIED BY “mypwd” ONLY;
RMAN> BACKUP AS COMPRESSED BACKUPSET DATABASE PLUS ARCHIVELOG;
On-Premises
HTTPS over WAN
17
https://odbs_dom.storage.ora
clecloud.com/v1/odbs_svc-
odbs_dom/myContainer/H8djkj8
6/BA387934/0000001
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Agenda
• Solution Overview
• Recovery Manager
• Flash Recovery Area
• Oracle Database Backup Cloud Service
• Oracle Recovery Appliance
• ZFS Storage Appliance for Backup
18
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Traditional B&R Solutions Are Not Designed for Database
Treat Databases as Just Files to Periodically Copy
Daily Backup Window
Large performance impact on
production
Data Loss Exposure
Lose all data since last
backup – no validation
Many Systems to Manage
Scale by deploying more
backup appliances
Poor Database Recoverability
Many files are copied but
protection state of database
is unknown
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Recovery Appliance – World’s Best Database Protection
✓Eliminate Data Loss
• Zero to Sub-second RPO
✓Shrink Backup Windows
•Reduce Backup Size by 10X or more
•Reduce Backup times by 10X or more
✓Be Ready for Recovery
• Continuous Restore Validation
• End-to-End Recovery Status
✓Scale Out Compute & Storage
• Resilient Hardware Platform
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Traditional Weekly Full, Daily Incremental
Last Backup
Sun Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat
Transactions NOT Backed Up!
Potential Data Loss!
ARCHIVED REDO LOG BACKUPS
+
RMAN
Catalog
Media
Catalog
PROD REDO
RMAN> crosscheck backup
RMAN> restore validate
Full Full Full
Incrementals Incrementals Incrementals
Un-Changed Data
Changed Data
Long Backup Windows, Data Loss Exposure
UNKNOWN Recoverability Status..
Until It’s Time to Restore!
Copyright © 2017, Oracle and/or its affiliates. All rights reserved. |
Recovery Appliance – Superior Approach
Incremental Forever + Real-Time Transaction Protection
Latest Incremental
Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat
DB Level
Restore
Validation
+
Real-Time
Transaction
Protection
Integrated
Catalog within
Recovery Appliance
PROD
REDO
One Time
Full
Daily Incrementals
Day 1
Full
Day 2+
Incremental
Latest
Incremental
Latest VALIDATED Virtual Full Backup
Day 2+ VALIDATED Virtual Full Backup
Current Time
Real-Time
Protection!
REDO
TO
RA
Sun
Single Source of Truth
KNOWN Recoverability Status!
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Recovery Appliance vs. Data Domain Comparison
• Core DB Daily Backup Size : 39TB → 1.4 TB
• Average backup size reduced by 30X
•
• Core DB Backup Window : 10 Hr → 50 Min
• Backup window reduced by 13X
Confidential – Oracle Internal
Backup Size Backup Window
0:00
1:12
2:24
3:36
4:48
6:00
7:12
8:24
9:36
10:48
12:00
A B C D E F G H I J K L M N
Hr(hh:mm)
DB
Backup Window
DataDomain
ZDLRA
0
500
1,000
1,500
2,000
2,500
3,000
3,500
4,000
A B C D E F G H I J K L M N
GB
DB
Backup Size
DataDomain
ZDLRA
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Agenda
• Solution Overview
• Recovery Manager
• Flash Recovery Area
• Oracle Database Backup Cloud Service
• Oracle Recovery Appliance
• ZFS Storage Appliance for Backup
24
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 25
Oracle ZFS Storage Appliance for Backup
Introducing The Backup Appliance
Architected for Modern IT
High Capacity
Lower Cost
High Performance
High Availability
Database Co-Engineering
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
High-Throughput Design Speeds
Backup And Restore
• Up to 144 CPU cores deliver more
bandwidth
• Up to 3TB DRAM absorbs more backup
jobs at memory speeds
• Up to 460TB flash cache accelerates
reads and writes
• High-performance integration with
Oracle Engineered Systems
• Built-in tuning & reporting
further enhance Oracle Database
backup and restore performance
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. 9
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 27
ZFS Storage Appliance
for Backup
Multiple File Types
Flat files,
Database blocks
2727Oracle Confidential--Internal/Restricted/Highly Restricted 2727
Any Database Any Application
Any Virtual
Machine
Multiple Backup
Software Options
Copyright © 2018, Oracle and/or its affiliates. All rights reserved.
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. |
Resources
• Monthly Technical Webcasts
– https://asktom.oracle.com
• Recovery Manager
– https://www.oracle.com/technetwork/database/database-technologies/rman/overview/index.html
• Flash Recovery Area
– Fast Recovery FAQ – Oracle Doc ID 833663.1
– https://support.oracle.com/epmos/faces/DocumentDisplay?id=833663.1&displayIndex=1#aref_section21
• Oracle Database Backup Cloud Service
– https://cloud.oracle.com/database_backup
• Oracle Recovery Appliance
– https://www.oracle.com/engineered-systems/zero-data-loss-recovery-appliance/index.html
• ZFS Storage Appliance for Backup
– https://www.oracle.com/storage/nas/zs-backup/
28
Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 29
30

Contenu connexe

Tendances

Oracle High Availability
Oracle High AvailabilityOracle High Availability
Oracle High AvailabilityFarooq Hussain
 
Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...
Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...
Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...xKinAnx
 
Presentation recovery manager (rman) configuration and performance tuning ...
Presentation    recovery manager (rman) configuration and performance tuning ...Presentation    recovery manager (rman) configuration and performance tuning ...
Presentation recovery manager (rman) configuration and performance tuning ...xKinAnx
 
Oracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for ConsolidationOracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for ConsolidationYudi Herdiana
 
Rman Presentation
Rman PresentationRman Presentation
Rman PresentationRick van Ek
 
Oracle database upgrade to 12c and available methods
Oracle database upgrade to 12c and available methodsOracle database upgrade to 12c and available methods
Oracle database upgrade to 12c and available methodsSatishbabu Gunukula
 
Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...
Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...
Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...Markus Michalewicz
 
Oracle Database Backup Cloud Service
Oracle Database Backup Cloud ServiceOracle Database Backup Cloud Service
Oracle Database Backup Cloud ServiceMarketingArrowECS_CZ
 
You most probably dont need rman catalog database white paper
You most probably dont need rman catalog database white paperYou most probably dont need rman catalog database white paper
You most probably dont need rman catalog database white paperYury Velikanov
 
Storage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewStorage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewAlan McSweeney
 
What's new in Oracle 19c & 18c Recovery Manager (RMAN)
What's new in Oracle 19c & 18c Recovery Manager (RMAN)What's new in Oracle 19c & 18c Recovery Manager (RMAN)
What's new in Oracle 19c & 18c Recovery Manager (RMAN)Satishbabu Gunukula
 
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 database 12c new features
Oracle database 12c new featuresOracle database 12c new features
Oracle database 12c new featuresJakkrapat S.
 
Dg broker & client connectivity - High Availability Day 2015
Dg broker & client connectivity -  High Availability Day 2015Dg broker & client connectivity -  High Availability Day 2015
Dg broker & client connectivity - High Availability Day 2015aioughydchapter
 
RMAN best practices for RAC
RMAN best practices for RACRMAN best practices for RAC
RMAN best practices for RACSyed Hussain
 
Db2 recovery IDUG EMEA 2013
Db2 recovery IDUG EMEA 2013Db2 recovery IDUG EMEA 2013
Db2 recovery IDUG EMEA 2013Dale McInnis
 
Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...
Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...
Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...xKinAnx
 
Oracle RAC and Your Way to the Cloud by Angelo Pruscino
Oracle RAC and Your Way to the Cloud by Angelo PruscinoOracle RAC and Your Way to the Cloud by Angelo Pruscino
Oracle RAC and Your Way to the Cloud by Angelo PruscinoMarkus Michalewicz
 

Tendances (20)

Oracle High Availability
Oracle High AvailabilityOracle High Availability
Oracle High Availability
 
Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...
Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...
Ibm spectrum scale fundamentals workshop for americas part 8 spectrumscale ba...
 
Presentation recovery manager (rman) configuration and performance tuning ...
Presentation    recovery manager (rman) configuration and performance tuning ...Presentation    recovery manager (rman) configuration and performance tuning ...
Presentation recovery manager (rman) configuration and performance tuning ...
 
Oracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for ConsolidationOracle Database 12c Multitenant for Consolidation
Oracle Database 12c Multitenant for Consolidation
 
Rman Presentation
Rman PresentationRman Presentation
Rman Presentation
 
Oracle database upgrade to 12c and available methods
Oracle database upgrade to 12c and available methodsOracle database upgrade to 12c and available methods
Oracle database upgrade to 12c and available methods
 
Exadata Backup
Exadata BackupExadata Backup
Exadata Backup
 
Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...
Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...
Oracle RAC 12c (12.1.0.2) Operational Best Practices - A result of true colla...
 
Oracle Database Backup Cloud Service
Oracle Database Backup Cloud ServiceOracle Database Backup Cloud Service
Oracle Database Backup Cloud Service
 
Oracle 12c
Oracle 12cOracle 12c
Oracle 12c
 
You most probably dont need rman catalog database white paper
You most probably dont need rman catalog database white paperYou most probably dont need rman catalog database white paper
You most probably dont need rman catalog database white paper
 
Storage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewStorage, San And Business Continuity Overview
Storage, San And Business Continuity Overview
 
What's new in Oracle 19c & 18c Recovery Manager (RMAN)
What's new in Oracle 19c & 18c Recovery Manager (RMAN)What's new in Oracle 19c & 18c Recovery Manager (RMAN)
What's new in Oracle 19c & 18c 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)
What’s new in oracle 12c recovery manager (rman)
 
Oracle database 12c new features
Oracle database 12c new featuresOracle database 12c new features
Oracle database 12c new features
 
Dg broker & client connectivity - High Availability Day 2015
Dg broker & client connectivity -  High Availability Day 2015Dg broker & client connectivity -  High Availability Day 2015
Dg broker & client connectivity - High Availability Day 2015
 
RMAN best practices for RAC
RMAN best practices for RACRMAN best practices for RAC
RMAN best practices for RAC
 
Db2 recovery IDUG EMEA 2013
Db2 recovery IDUG EMEA 2013Db2 recovery IDUG EMEA 2013
Db2 recovery IDUG EMEA 2013
 
Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...
Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...
Ibm spectrum scale fundamentals workshop for americas part 2 IBM Spectrum Sca...
 
Oracle RAC and Your Way to the Cloud by Angelo Pruscino
Oracle RAC and Your Way to the Cloud by Angelo PruscinoOracle RAC and Your Way to the Cloud by Angelo Pruscino
Oracle RAC and Your Way to the Cloud by Angelo Pruscino
 

Similaire à Oracle Backup Solutions Overview August 2018

Presentation announcing oracle secure backup 10.3
Presentation   announcing oracle secure backup 10.3Presentation   announcing oracle secure backup 10.3
Presentation announcing oracle secure backup 10.3xKinAnx
 
Backups And Recovery
Backups And RecoveryBackups And Recovery
Backups And Recoveryasifmalik110
 
Proact ExaGrid Seminar Presentation KK 20220419.pdf
Proact ExaGrid Seminar Presentation KK 20220419.pdfProact ExaGrid Seminar Presentation KK 20220419.pdf
Proact ExaGrid Seminar Presentation KK 20220419.pdfKarel Kannel
 
10 ways to improve your rman script
10 ways to improve your rman script10 ways to improve your rman script
10 ways to improve your rman scriptMaris Elsins
 
The Sun ZFS Backup Appliance
The Sun ZFS Backup ApplianceThe Sun ZFS Backup Appliance
The Sun ZFS Backup Applianceomnidba
 
C6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloud
C6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloudC6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloud
C6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloudDr. Wilfred Lin (Ph.D.)
 
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_databasesDr. Wilfred Lin (Ph.D.)
 
Disaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle ClouduDisaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle ClouduMarketingArrowECS_CZ
 
Oracle Database Availability & Scalability Across Versions & Editions
Oracle Database Availability & Scalability Across Versions & EditionsOracle Database Availability & Scalability Across Versions & Editions
Oracle Database Availability & Scalability Across Versions & EditionsMarkus Michalewicz
 
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 13cAlfredo Krieg
 
Collaborate 2012 - RMAN Eliminate the mystery
Collaborate 2012 - RMAN Eliminate the mysteryCollaborate 2012 - RMAN Eliminate the mystery
Collaborate 2012 - RMAN Eliminate the mysteryNelson Calero
 
RMAN in 12c: The Next Generation (PPT)
RMAN in 12c: The Next Generation (PPT)RMAN in 12c: The Next Generation (PPT)
RMAN in 12c: The Next Generation (PPT)Gustavo Rene Antunez
 
New availability features in oracle rac 12c release 2 anair ss
New availability features in oracle rac 12c release 2 anair   ssNew availability features in oracle rac 12c release 2 anair   ss
New availability features in oracle rac 12c release 2 anair ssAnil Nair
 
Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups
Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups
Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups Niklas Iveslatt
 
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 EditionMarkus Michalewicz
 

Similaire à Oracle Backup Solutions Overview August 2018 (20)

Les 02 config
Les 02 configLes 02 config
Les 02 config
 
con8832-cloudha-2811114.pdf
con8832-cloudha-2811114.pdfcon8832-cloudha-2811114.pdf
con8832-cloudha-2811114.pdf
 
Oracle Storage a ochrana dat
Oracle Storage a ochrana datOracle Storage a ochrana dat
Oracle Storage a ochrana dat
 
Presentation announcing oracle secure backup 10.3
Presentation   announcing oracle secure backup 10.3Presentation   announcing oracle secure backup 10.3
Presentation announcing oracle secure backup 10.3
 
Backups And Recovery
Backups And RecoveryBackups And Recovery
Backups And Recovery
 
Proact ExaGrid Seminar Presentation KK 20220419.pdf
Proact ExaGrid Seminar Presentation KK 20220419.pdfProact ExaGrid Seminar Presentation KK 20220419.pdf
Proact ExaGrid Seminar Presentation KK 20220419.pdf
 
10 ways to improve your rman script
10 ways to improve your rman script10 ways to improve your rman script
10 ways to improve your rman script
 
The Sun ZFS Backup Appliance
The Sun ZFS Backup ApplianceThe Sun ZFS Backup Appliance
The Sun ZFS Backup Appliance
 
C6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloud
C6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloudC6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloud
C6 oracles storage_strategy_from_databases_to_engineered_systems_to_cloud
 
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
 
les12.pdf
les12.pdfles12.pdf
les12.pdf
 
Disaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle ClouduDisaster Recovery pomocí Oracle Cloudu
Disaster Recovery pomocí Oracle Cloudu
 
Oracle Database Availability & Scalability Across Versions & Editions
Oracle Database Availability & Scalability Across Versions & EditionsOracle Database Availability & Scalability Across Versions & Editions
Oracle Database Availability & Scalability Across Versions & Editions
 
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
 
Collaborate 2012 - RMAN Eliminate the mystery
Collaborate 2012 - RMAN Eliminate the mysteryCollaborate 2012 - RMAN Eliminate the mystery
Collaborate 2012 - RMAN Eliminate the mystery
 
RMAN in 12c: The Next Generation (PPT)
RMAN in 12c: The Next Generation (PPT)RMAN in 12c: The Next Generation (PPT)
RMAN in 12c: The Next Generation (PPT)
 
New availability features in oracle rac 12c release 2 anair ss
New availability features in oracle rac 12c release 2 anair   ssNew availability features in oracle rac 12c release 2 anair   ss
New availability features in oracle rac 12c release 2 anair ss
 
Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups
Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups
Oracle Open World Presentation - Oracle RMAN Best Practices for Cloud Backups
 
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
 

Dernier

Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 

Dernier (20)

Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Oracle Backup Solutions Overview August 2018

  • 1. Oracle Backup Solutions Overview St. Louis Oracle Users Group August 9, 2018 Dan Glasscock North American Sales Strategy Lead, Oracle Database Cloud
  • 2. Copyright © 2018, 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. 2
  • 3. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Agenda • Solution Overview • Recovery Manager • Flash Recovery Area • Oracle Database Backup Cloud Service • Oracle Recovery Appliance • ZFS Storage Appliance for Backup 3
  • 4. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Backup and Recovery Solution Portfolio 4 Oracle Cloud Protected Files ExaCS DBCS Instantiate into DBCS/ExaCS DB Backup Cloud Service Secure Backup On-Premises Oracle Cloud Storage Compression & Encryption Backup to and Recover from On-Premises or Oracle Cloud Protected Databases Cloud @ Customer Filesystem RMAN: Built-in backup & recovery engine for the Oracle database which provides performant, efficient and dependable protection. Recovery Appliance: Engineered System purpose- built for data center-wide Oracle database protection which ensures zero data loss, verifies backup integrity, and reduces data protection overhead by eliminating repeated full backups. DB Backup Cloud Service: Secure & scalable Oracle Cloud Service providing cost effective storage for long-term retention & compliance of RMAN backups. Secure Backup: Centralized disk, tape and cloud backup management which provides heterogeneous filesystem protection for the entire data center. 1 1 2 2 3 3 4 4
  • 5. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Common RMAN Configuration Settings Description Benefits Cons Archived log mode •Ability to recover to any point in time •Enables online backup operations Requires more storage space to accommodate both online redo and archived logs Block Change Tracking (BCT) Enables fast incremental backups. Without BCT, RMAN would have to scan the entire database to determine which blocks are changed during incremental backups. MINIMAL overhead on the database server Control file automatic backup •Database recoverability even if current control file, recovery catalog is inaccessible. •When in archived log mode, it is backed up automatically when database structural changes are updated. None ….Not Set By Default
  • 6. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Backup Retention Period • RMAN retention policy options applicable to disk AND tape: 1. Redundancy ( how many copies ; default is REDUNDANCY 1) 2. Recovery window ( for example, 7 days) • Long-term RMAN backups (outside of set retention policies) may be created with KEEP FOREVER or with an UNTIL clause • Issue RMAN DELETE OBSOLETE command regularly which – DISK : Deletes backup related files which are no longer needed – SBT : Updates media manager to which backup pieces are no longer needed to meet user-configured RMAN retention settings Recoverability
  • 7. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Recovery Catalog • By default, RMAN’s metadata stored in the control file • Having a separate Recovery catalog provides the following advantages: – Central RMAN metadata repository for one or more databases – Enables use of RMAN stored scripts instead of just command line – Enables creation of customized reports for all registered targets – Centralizes management and storage of multiple databases (mixed database versions and/or platforms) – Enables use of the KEEP FOREVER clause • No licensing fee for an RMAN catalog database • Common strategy is to co-locate the RMAN, OSB and EM catalogs on the same server RMAN’s Schema
  • 8. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | RMAN Good to Know Stuff True or False You can restart RMAN backups from an approximate point of failure? • RMAN backups are restart-able from an approximate point of failure –Smallest size of restartability is a backup set –BACKUP DATABASE NOT BACKED UP SINCE TIME 'SYSDATE-1';
  • 9. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | RMAN Good to Know RMAN – Cont’d • RMAN command BACKUP RECOVERY AREA; – RMAN disk or sbt destination (D2D2T) – Optimized backup by default – Always a backup set backup type • RMAN backup encryption has license restrictions: – Directly to disk requires Oracle Advanced Security Option (ASO) – Directly to tape requires Oracle Secure Backup (OSB) – RMAN compression – BASIC is free – HIGH, MEDIUM, LOW require Advanced Compression Option (ACO)
  • 10. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Agenda • Solution Overview • Recovery Manager • Flash Recovery Area • Oracle Database Backup Cloud Service • Oracle Recovery Appliance • ZFS Storage Appliance for Backup 10
  • 11. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | What is Fast Recovery Area (FRA) ? • Unified near-line storage location for all recovery files and recovery related activities in an Oracle Database – Centralized location for control file copies, multiplexed online redo logs, archived logs, flashback logs, backups (image copy or backup set) – FRA can be defined as a directory, file system, or ASM disk group – A single recovery area can be shared by more than one database – Initialization parameters db_recovery_file_dest & db_recovery_file_dest_size • FRA may be on tier 2+ storage although not necessarily recommended – Slower storage could effect production database performance • Online redo logs, archived logs, Flashback logs and controlfile RMAN Managed Disk Storage Location NAME TYPE VALUE ------------------------------------ ----------- -------------------------- db_recovery_file_dest string /oradata/prod/fra db_recovery_file_dest_size big integer 500G
  • 12. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Fast Recovery Area Sizing • Archived logs - Estimate total size of all archived logs generated between successive backups on the busiest days x 2 (in case of unexpected redo spikes) • Flashback logs - Add in {Redo rate x Flashback retention target time x 2} • Incremental backups - Add in their estimated sizes • On-disk image copy - Add in size of the database minus size of temporary files – When using an incrementally updated backup strategy (incremental forever after initial full) • Full backup set backup(s) – When using a full / incremental backup strategy • Further details: – http://docs.oracle.com/cd/E16655_01/backup.121/e17630/rcmconfb.htm#BRADV8183 Exercise in Math – Depends on What You Want to Keep
  • 13. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | FRA – Instant Recovery How do you recover a Tablespace with a corrupt Data file? Without an FRA 1. Take the tablespace offline 2. Restore the Datafile from a backup 3. Recover the Datafile 4. Place the tablespace back online With FRA 1. Take the tablespace offline. 2. Switch to FRA Copy 3. Recover Datafile 4. Place the tablespace online.
  • 14. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Agenda • Solution Overview • Recovery Manager • Flash Recovery Area • Oracle Database Backup Cloud Service • Oracle Recovery Appliance • ZFS Storage Appliance for Backup 14
  • 15. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Oracle Database Backup Cloud Service (PaaS) 15 Low-Cost Offsite Cloud Storage for Oracle Database Backups Firewall On-Premises Databases 10.2 and above Instant Offsite Storage Cost Effective ($33/TB/Month) On-demand Scalability End-to-End Security RMAN Encryption RMAN Compression 3-Way Protection for HA Geo-Replication for DR 24x7 Data Availability Platform as a Service Oracle Database Backup Cloud Service Oracle DBaaS / Exadata Cloud Service RMAN driven Backup & Recovery
  • 16. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Backup Service: For your On-Premises Database Backups 16 Simple 4-Step Process Cloud Subscription • Metered / Non-Metered • Storage Capacity • Identity Domain • Service Name • User ID/Password • Geo-Replication 1 2 3 4 Install RMAN Module • Download Installer from OTN • Run Installer on the DB Server Configure RMAN • Tape (SBT) Interface • Encryption • Compression • Parallelism Perform Backup & Recovery • Schedule full & Incremental backups • Restore & Recovery on-demand
  • 17. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | End-To-End Flow Recovery Manager RMAN Cloud Module* Oracle Wallet* OPC Config File Oracle Database Backup Cloud Service Database, FRA opc_host=https://odbs_dom. storage.oraclecloud.com/odbs_svc-odbs_dom opc_wallet='location=file:/abc/opcwlt‘ opc_container=‘myContainer’ $ rman target / RMAN> CONFIGURE CHANNEL DEVICE TYPE SBT PARMS='SBT_LIBRARY= /opc/libopc.so’ , SBT_PARMS=(OPC_PFILE=/opc/opcSID.ora)'; RMAN> CONFIGURE DEVICE TYPE SBT PARALLELISM 8; RMAN> SET ENCRYPTION ON IDENTIFIED BY “mypwd” ONLY; RMAN> BACKUP AS COMPRESSED BACKUPSET DATABASE PLUS ARCHIVELOG; On-Premises HTTPS over WAN 17 https://odbs_dom.storage.ora clecloud.com/v1/odbs_svc- odbs_dom/myContainer/H8djkj8 6/BA387934/0000001
  • 18. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Agenda • Solution Overview • Recovery Manager • Flash Recovery Area • Oracle Database Backup Cloud Service • Oracle Recovery Appliance • ZFS Storage Appliance for Backup 18
  • 19. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Traditional B&R Solutions Are Not Designed for Database Treat Databases as Just Files to Periodically Copy Daily Backup Window Large performance impact on production Data Loss Exposure Lose all data since last backup – no validation Many Systems to Manage Scale by deploying more backup appliances Poor Database Recoverability Many files are copied but protection state of database is unknown
  • 20. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Recovery Appliance – World’s Best Database Protection ✓Eliminate Data Loss • Zero to Sub-second RPO ✓Shrink Backup Windows •Reduce Backup Size by 10X or more •Reduce Backup times by 10X or more ✓Be Ready for Recovery • Continuous Restore Validation • End-to-End Recovery Status ✓Scale Out Compute & Storage • Resilient Hardware Platform
  • 21. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Traditional Weekly Full, Daily Incremental Last Backup Sun Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat Transactions NOT Backed Up! Potential Data Loss! ARCHIVED REDO LOG BACKUPS + RMAN Catalog Media Catalog PROD REDO RMAN> crosscheck backup RMAN> restore validate Full Full Full Incrementals Incrementals Incrementals Un-Changed Data Changed Data Long Backup Windows, Data Loss Exposure UNKNOWN Recoverability Status.. Until It’s Time to Restore!
  • 22. Copyright © 2017, Oracle and/or its affiliates. All rights reserved. | Recovery Appliance – Superior Approach Incremental Forever + Real-Time Transaction Protection Latest Incremental Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat Sun Mon Tues Wed Thurs Fri Sat DB Level Restore Validation + Real-Time Transaction Protection Integrated Catalog within Recovery Appliance PROD REDO One Time Full Daily Incrementals Day 1 Full Day 2+ Incremental Latest Incremental Latest VALIDATED Virtual Full Backup Day 2+ VALIDATED Virtual Full Backup Current Time Real-Time Protection! REDO TO RA Sun Single Source of Truth KNOWN Recoverability Status!
  • 23. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Recovery Appliance vs. Data Domain Comparison • Core DB Daily Backup Size : 39TB → 1.4 TB • Average backup size reduced by 30X • • Core DB Backup Window : 10 Hr → 50 Min • Backup window reduced by 13X Confidential – Oracle Internal Backup Size Backup Window 0:00 1:12 2:24 3:36 4:48 6:00 7:12 8:24 9:36 10:48 12:00 A B C D E F G H I J K L M N Hr(hh:mm) DB Backup Window DataDomain ZDLRA 0 500 1,000 1,500 2,000 2,500 3,000 3,500 4,000 A B C D E F G H I J K L M N GB DB Backup Size DataDomain ZDLRA
  • 24. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Agenda • Solution Overview • Recovery Manager • Flash Recovery Area • Oracle Database Backup Cloud Service • Oracle Recovery Appliance • ZFS Storage Appliance for Backup 24
  • 25. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 25 Oracle ZFS Storage Appliance for Backup Introducing The Backup Appliance Architected for Modern IT High Capacity Lower Cost High Performance High Availability Database Co-Engineering
  • 26. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | High-Throughput Design Speeds Backup And Restore • Up to 144 CPU cores deliver more bandwidth • Up to 3TB DRAM absorbs more backup jobs at memory speeds • Up to 460TB flash cache accelerates reads and writes • High-performance integration with Oracle Engineered Systems • Built-in tuning & reporting further enhance Oracle Database backup and restore performance Copyright © 2018, Oracle and/or its affiliates. All rights reserved. 9
  • 27. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 27 ZFS Storage Appliance for Backup Multiple File Types Flat files, Database blocks 2727Oracle Confidential--Internal/Restricted/Highly Restricted 2727 Any Database Any Application Any Virtual Machine Multiple Backup Software Options Copyright © 2018, Oracle and/or its affiliates. All rights reserved.
  • 28. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | Resources • Monthly Technical Webcasts – https://asktom.oracle.com • Recovery Manager – https://www.oracle.com/technetwork/database/database-technologies/rman/overview/index.html • Flash Recovery Area – Fast Recovery FAQ – Oracle Doc ID 833663.1 – https://support.oracle.com/epmos/faces/DocumentDisplay?id=833663.1&displayIndex=1#aref_section21 • Oracle Database Backup Cloud Service – https://cloud.oracle.com/database_backup • Oracle Recovery Appliance – https://www.oracle.com/engineered-systems/zero-data-loss-recovery-appliance/index.html • ZFS Storage Appliance for Backup – https://www.oracle.com/storage/nas/zs-backup/ 28
  • 29. Copyright © 2018, Oracle and/or its affiliates. All rights reserved. | 29
  • 30. 30