Oracle develops offerings for three distinct deployment models: Traditional On-Premise, Cloud at Customer, and Public Cloud. We offer services to help you on journeys to the Cloud.
You can backup both structured and unstructured data to Cloud. Store a second copy of your on-premises data off-site. Oracle Database Backup Service integrated with RMAN so you can take advantage of cloud-based data protection with current IT processes and staff.
Provides data security with granular encryption, data integrity via checksum verifications, automatic translation between files and objects, near local NAS performance through data caching, and Docker support for easy deployment.
- Store database backups in Oracle Storage Cloud using familiar RMAN interface for backup and recovery operations:
$ rman target /
Recovery Manager: Release 12.1.0.1.0 – Production
Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved.
connected to target database: odbs (DBID=1327452123, open)
RMAN> SET ENCRYPTION ON IDENTIFIED BY ‘<your_secure_password>’ ONLY;
RMAN> BACKUP DEVICE TYPE SBT AS COMPRESSED BACKUPSET DATABASE PLUS ARCHIVELOG FORMAT ‘%d_%U’;
- Disaster Recovery to Cloud Using Backups:
- Configure RMAN and Perform Backup
rman target / << EOF
CONFIGURE CHANNEL DEVICE TYPE ‘SBT_TAPE’ PARMS ‘SBT_LIBRARY=$ORACLE_HOME/lib/libopc.so, ENV=(OPC_PFILE=$ORACLE_HOME/dbs/opcdatabase.ora)’;
CONFIGURE COMPRESSION ALGORITHM ‘MEDIUM’;
CONFIGURE CONTROLFILE AUTOBACKUP ON;
CONFIGURE DEVICE TYPE ‘SBT_TAPE’ PARALLELISM 4 BACKUP TYPE TO BACKUPSET;
SHOW ALL;
SET ENCRYPTION ON IDENTIFIED BY ‘Manager123#’ ONLY;
BACKUP DEVICE TYPE SBT AS COMPRESSED BACKUPSET DATABASE PLUS ARCHIVELOG FORMAT ‘%d_%U’;
EOF
Leave a Reply