Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5

Size: px
Start display at page:

Download "Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5"

Transcription

1 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-1 Migration Preparation Operations 1 Capture database file metadata 2 Verify COMPATIBLE setting 3 Create INCREMENTAL LEVEL 0 image copy backups of all datafiles 4 Create INCREMENTAL LEVEL 1 backups of all datafiles Capture metadata for all database files about to be migrated. If COMPATIBLE is < , then it will be necessary to change any READ ONLY transportable tablespaces to READ WRITE mode. Back up all datafiles as INCREMENTAL LEVEL 0 image copy backups, routing them to their eventual ASM disk group(s). Create INCREMENTAL LEVEL 1 differential backups for all datafiles.

2 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-2 Immediate Pre-Migration Prerequisites 1 Archive online redo log Issue ALTER SYSTEM SWITCH LOGFILE; command to archive the most current online redo log. 2 Disable unnecessary recovery settings 3 Perform consistent database shutdown Turn off BCT. Turn off Flashback Database logging. Remove any restore points. Issue SHUTDOWN IMMEDIATE command to ensure no uncommitted changes remain and that all dirtied database buffers are checkpointed.

3 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-3 Complete Migration to ASM 1 Migrate modified SPFILE to ASM 2 Migrate control files to ASM Build a PFILE from the current SPFILE. Modify the PFILE s initialization parameters to point to ASM disk group(s) for all files. Test the PFILE. Rebuild an ASM-based SPFILE. Restart the instance. Restore the database s control files to the chosen ASM disk group(s). 3 Mount the database Mount the database using the newly migrated control files. 4 Switch to previously migrated datafiles Use the SWITCH DATABASE TO COPY; RMAN command to switch all datafiles to ASM-based storage. 5 Recover the database Perform complete recovery on the migrated datafiles using differential INCREMENTAL LEVEL 1 backups, archived redo logs, and currently online redo logs. 6 Open the database in RESETLOGS mode 7 Migrate online redo logs to ASM 8 Migrate temporary tablespace temp file(s) to ASM Issue the ALTER DATABASE OPEN RESETLOGS; command to open the database. Re-create all members for the online redo log groups on the chosen ASM disk group(s). Create a new temp file for all temporary tablespace(s) on the chosen ASM disk group(s). 9 Switch FRA to ASM Modify DB_RECOVERY_FILE_DEST to ASM storage. 10 Restore/rebuild database backups to FRA on ASM Optionally, restore any existing backup files to the FRA on its new ASM disk group(s). 11 Validate the migration Validate that all database files have been successfully migrated per expectations.

4 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-1A Phased Migration from Non-ASM to ASM Storage: Preparations 1 Capture database file metadata 2 Verify COMPATIBLE setting 3 Create INCREMENTAL LEVEL 0 image copy backups of datafiles for selected tablespaces 4 Create INCREMENTAL LEVEL 1 backups of datafiles for selected tablespaces 5 Recover selected tablespaces to image copies 6 Move non-asm mount points to ASM disk groups 7 Rebalance ASM disk groups Capture metadata for all database files about to be migrated. If COMPATIBLE is < , then it will be necessary to change any READ ONLY transportable tablespaces to READ WRITE mode. Back up selected tablespaces as INCREMENTAL LEVEL 0 image copy backups, routing them to their eventual ASM disk group(s). Create INCREMENTAL LEVEL 1 differential backups for selected tablespaces. Use the SWITCH TABLESPACE <tablespace name> TO COPY; RMAN command to switch all datafiles for selected tablespaces to ASM-based storage. Once all database files have been moved from one or more set(s) of LUNs, those LUNs can be wiped clean of any file system and then added as new ASM disks into an existing ASM disk group. This can also be done from SQL*Plus while connected to the ASM instance via the ALTER DISKGROUP <diskgroup name> ADD <disk_name_1, disk_name_2, > REBALANCE POWER n; command, where n can range from 1 to 1024 in Oracle Once old mount points are added via Step 6 to the ASM disk groups, ASM should automatically rebalance them, thus spreading all ASM AUs across all available ASM disks. This can also be done from SQL*Plus while connected to the ASM instance via the ALTER DISKGROUP <diskgroup name> REBALANCE POWER n; command.

5 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-3A Phased Migration from Non-ASM to ASM Storage: Completion 1 Migrate modified SPFILE to ASM 2 Migrate control files to ASM Build a PFILE from the current SPFILE. Modify the PFILE s initialization parameters to point to ASM disk group(s) for all files. Test the PFILE. Rebuild an ASM-based SPFILE. Restart the instance. Restore the database s control files to the chosen ASM disk group(s). 3 Mount the database Mount the database using the newly migrated control files. 4 Create INCREMENTAL LEVEL 0 image copy backups of datafiles for remaining tablespaces 5 Switch to remaining datafiles Back up datafiles for any remaining tablespaces that is, SYSTEM, UNDOTBS, SYSAUX, and any others as INCREMENTAL LEVEL 0 image copy backups, routing them to their eventual ASM disk group(s). Use the SWITCH DATABASE TO COPY; RMAN command to switch all remaining datafiles to ASMbased storage. 6 Recover the database Perform complete recovery on the migrated datafiles using differential INCREMENTAL LEVEL 1 backups, archived redo logs, and currently online redo logs. 7 Open database In RESETLOGS mode 8 Migrate online redo logs to ASM Issue the ALTER DATABASE OPEN RESETLOGS; command to open the database. Re-create all members for the online redo log groups on the chosen ASM disk group(s). (Continues)

6 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-3A Phased Migration from Non-ASM to ASM Storage: Completion (Continued) 9 Migrate temporary tablespace temp file(s) to ASM Create a new temp file for all temporary tablespace(s) on the chosen ASM disk group(s). 10 Switch FRA to ASM Modify DB_RECOVERY_FILE_ DEST to ASM storage. 11 Restore/rebuild database backups to FRA on ASM Optionally, restore any existing backup files to the FRA on its new ASM disk group(s). 12 Validate the migration Validate that all database files have been successfully migrated per expectations

7 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 6 CHECKLIST 6-1 TTS Pre-Migration Preparations 1 Determine source and destination platform endianness 2 Verify transportability of selected tablespace set 3 Create transportability infrastructure Verify source and platform endianness. If different endianness is detected, decide where the RMAN CONVERT command will be executed. Confirm that Tablespaces selected are indeed part of self-contained set. Database character set is identical (or at least that the destination database s character set is a superset of the source database). Build any directories needed for temporary storage of Data Pump Export and Import parameter files and dump sets and grant appropriate permissions to directory objects. Build a database link to permit transmission of files via DBMS_ FILE_TRANSFER. Prepare Data Pump Export and Import scripts and parameter files for metadata capture and transport.

8 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 6 CHECKLIST 6-2 Example TTS Operation 1 Switch selected tablespaces to READ ONLY mode on source database 2 Capture source tablespace metadata via Data Pump 3 Transport datafiles and metadata from source platform to destination platform 4 Perform endian conversion at destination 5 Import source tablespace metadata via Data Pump Export 6 Switch transported tablespaces to READ WRITE mode at destination 7 Revert selected tablespaces to READ WRITE mode at source From SQL*Plus on the source database, issue ALTER TABLESPACE <tablespace name> READ ONLY; for each tablespace about to be transported. Via Data Pump Export, capture the metadata for all objects in each tablespace about to be transported. Use DBMS_FILE_TRANSFER to copy all datafiles and Data Pump dump set from source to destination platform. If necessary, convert the tablespace s datafiles to the endian format on the destination OS platform. Via Data Pump Import, import the metadata for each transported tablespace. Issue ALTER TABLESPACE <tablespace name> READ WRITE; for each tablespace that has been incorporated into the destination database. If desired, issue ALTER TABLESPACE <tablespace name> READ WRITE; for each tablespace transported from the source platform.

9 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 6 CHECKLIST 6-3 Point-in-Time TTS 1 Create Transportable Tablespace Set as of specific point in time 2 Transport datafiles and metadata from source platform to destination platform 3 Perform endian conversion at destination 4 Import source tablespace metadata via Data Pump Export 5 Switch transported tablespaces to READ WRITE mode at destination 6 Revert tablespaces to READ WRITE mode at source Use RMAN TRANSPORTABLE TABLESPACE command to build a TTS for a specific point in time. Use DBMS_FILE_TRANSFER to copy all datafiles and Data Pump dump set from the source to the destination platform. If necessary, convert the tablespace s datafiles to the endian format on the destination OS platform. Via Data Pump Import, import the metadata for each transported tablespace. Issue ALTER TABLESPACE <tablespace name> READ WRITE; for each tablespace that has been incorporated into the destination database If desired, issue ALTER TABLESPACE <tablespace name> READ WRITE; for each tablespace transported from the source platform.

10 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 6 CHECKLIST 6-4 TDB Migration: A Practical Example 1 Perform consistent shutdown of source database 2 Reopen source database in READ ONLY mode 3 Verify database transportability 4 Prepare source database for transport to destination 5 Transport source database to destination database OS platform 6 Open destination database From SQL*Plus on the source database, issue SHUTDOWN IMMEDIATE; and wait for shutdown to complete cleanly. From SQL*Plus on the source database, issue STARTUP READ ONLY; to open the database in READ ONLY mode. Execute procedures to verify the database is in the proper state for transportability: DBMS_TTS.CHECK_DB DBMS_TTS.CHECK_EXTERNAL Prepare for conversion: If conversion is done on the source platform, then RMAN generates and retains appropriate converted versions on the source platform for eventual transport to the destination. If conversion is done on the destination, then RMAN generates a conversion script that is shipped to the destination database for eventual execution there. Ship all necessary scripts and database files to the destination server via either scpy, sftp, or the DBMS_FILE_TRANSFER utility. From SQL*Plus on the destination database, issue ALTER DATABASE OPEN RESETLOGS; to open the database in a new incarnation.

11 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 9 CHECKLIST 9-1 Preparing for Migration (XTTS) 1 Identify tablespace sets Identify which tablespace set(s) will be migrated from source to destination databases. 2 Identify source and destination database versions and desired migration method(s) 3 Download XTTS scripts and modules 4 Create supporting database objects/staging areas on source and destination platforms 5 Decompress and install XTTS scripts 6 Configure XTTS properties and environment variables Determine which migration method(s) are possible between the source and destination OS platforms. See MOS Note for the link to rman_xttconvert_ 1.4.zip. If the DBMS_FILE_TRANSFER method is selected, create the required directory objects and database link. If the RMAN method is selected, create staging areas at the destination. Save rman_xttconvert_1.4.zip contents to the staging directory on the source and destination database platforms. Set up an xtt.properties file and establish a TMPDIR directory.

12 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 9 CHECKLIST 9-2A Initial Migration Using RMAN 1 Prepare tablespace sets for transport 2 Push datafile copies from source platform to destination platform 3 Perform endian conversion at destination Check that all selected tablespaces on the source database are ready for XTTS migration. Stage image copies of all selected tablespaces datafiles on the source platform. If required, build an RMAN command script for eventual datafile conversion on the destination database. Use OS commands to push all datafile copies from the source platform to the destination platform. If necessary, convert the tablespaces datafiles to the endian format on the destination OS platform.

13 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 9 CHECKLIST 9-2B Initial Migration Using DBMS_FILE_TRANSFER 1 Prepare tablespace sets for transport 2 Pull transport datafiles from source platform to destination platform Check that all selected tablespaces on the source database are ready for XTTS migration. Prepare the getfile.sql script and xttnewdatafiles.txt parameter file. Copy the script and parameter file to the destination platform. Invoke DBMS_FILE_TRANSFER to pull all datafiles and Data Pump dump set from the source platform to the destination platform.

14 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 9 CHECKLIST 9-3 Synchronizing Iteratively via Incremental Backups 1 Create incremental backups via RMAN 2 Push incremental backups from source platform to destination platform 3 Convert and apply incremental backups to destination database 4 Capture FROM_SCN for next incremental backup Build INCREMENTAL LEVEL 1 backups for XTTS tablespaces on the source database and create parameter files for later synchronization steps. Invoke OS commands to push all incremental backups from the source platform to the destination platform. If necessary, convert the incremental backups to the endian format on the destination OS platform. Apply the converted incremental backups to the destination database. Determine and record the starting SCN for the next INCREMENTAL LEVEL 1 backup.

15 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 9 CHECKLIST 9-4 Final Synchronization and Migration 1 Switch tablespaces to READ ONLY mode at destination 2 Create incremental backups via RMAN 3 Push incremental backups from source platform to destination platform 4 Convert and apply incremental backups to destination database 5 Import source tablespace metadata via Data Pump Import 6 Switch transported tablespaces to READ WRITE mode at destination 7 Revert tablespaces to READ WRITE mode at source 8 Redirect applications to destination database 9 Clean up staging directories Issue ALTER TABLESPACE <tablespace name> READ ONLY; for selected tablespace(s) on the source database. Build INCREMENTAL LEVEL 1 backups for XTTS tablespaces on the source database and create parameter files for later synchronization steps. Use OS commands to push all incremental backups from the source platform to the destination platform. If necessary, convert the incremental backups to the endian format on the destination OS platform. Apply converted incremental backups to the destination database. Generate and execute Data Pump Import commands to import the source database tablespaces metadata into the destination database. Issue ALTER TABLESPACE <tablespace name> READ WRITE; for each tablespace that has been incorporated into the destination database. If desired, issue ALTER TABLESPACE <tablespace name> READ WRITE; for each tablespace transported from the source platform. Create and start appropriate database services and/or network connectivity on the new destination database. Remove unneeded files from the source and destination systems.

16 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 13 CHECKLIST 13-1 Cloning a New Empty PDB from PDB$SEED and Transferring Data Into It 1 Clone a New Empty PDB from PDB$SEED 2 Transfer Data into New PDB Create a new empty PDB by cloning it from the PDB$SEED PDB Transfer data from the source database into the new PDB using the most appropriate migration method

17 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 13 CHECKLIST 13-2 Cloning a New PDB from an Existing PDB 1 Determine destination directory for new PDB Determine where the new PDB tablespaces datafiles should reside on the destination platform. 2 Quiesce source PDB Bring the source PDB into READ ONLY mode to guarantee transactional consistency before and after data transference. 3 Clone new PDB Copy the source PDB s contents to a new PDB at the destination CDB. 4 Reactivate source PDB Return the source PDB to READ WRITE mode.

18 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 13 CHECKLIST 13-3 Unplugging and Replugging a PDB 1 Quiesce source PDB Bring the source database into READ ONLY mode to guarantee transactional consistency before and after data transference. 2 Unplug PDB from source CDB 3 Drop unplugged PDB from source CDB 4 Verify compatibility of unplugged PDB with its destination CDB 5 Replug PDB into destination CDB 6 Reactivate replugged PDB Issue the ALTER PLUGGABLE DATABASE UNPLUG command to unplug the source PDB from its current CDB. Issue the DROP PLUGGABLE DATABASE command to drop the source PDB. Run the CHECK_PLUG_ COMPATIBILITY procedure of the DBMS_PDB package to verify the PDB s compatibility with the destination CDB. Issue CREATE PLUGGABLE DATABASE command to replug source PDB into its new destination CDB. Issue ALTER DATABASE OPEN; to open the replugged PDB at its new CDB location.

19 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 13 CHECKLIST 13-4 Transforming a Non-CDB into a PDB 1 Quiesce source Non-CDB Bring source non-cdb into READ ONLY mode to guarantee transactional consistency before and after data transference. 2 Construct PDB metadata Build corresponding metadata for the new PDB. 3 Shut down source non-cdb Close non-cdb database. 4 Plug in PDB Use previously captured metadata to plug non-cdb into CDB as new PDB. 5 Resolve extraneous metadata in new PDB 6 Open new PDB in READ WRITE mode Execute noncdb_to_pdb.sql script to eliminate redundant metadata in new PDB. Bring new PDB into READ WRITE mode.

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

Oracle Database 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management Introduction... 3 Database Migration to ASM

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Exam Questions 1Z0-062

Exam Questions 1Z0-062 Exam Questions 1Z0-062 Oracle Database 12c: Installation and Administration https://www.2passeasy.com/dumps/1z0-062/ 1. You are required to migrate your 11.2.0.3 database as a pluggable database (PDB)

More information

Oracle RMAN for Absolute Beginners

Oracle RMAN for Absolute Beginners Oracle RMAN for Absolute Beginners Darl Kuhn Apress Contents About the Author Acknowledgments Introduction xvii xix xxi Chapter 1: Getting Started... 1 Connecting to Your Database 1 Establishing OS Variables

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Upgrade to Oracle Database 12c 何革新 Gexin.he@oracle.com The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

More information

A. connecting to the target database and a recovery catalog to execute the duplicate command

A. connecting to the target database and a recovery catalog to execute the duplicate command Volume: 175 Questions Question No : 1 Which two are prerequisites for creating a backup-based duplicate database? A. connecting to the target database and a recovery catalog to execute the duplicate command

More information

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year!

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year! DUMP STEP Question & Answer ACCURATE STUDY GUIDES, HIGH PASSING RATE! Dump Step provides update free of charge in one year! http://www.dumpstep.com Exam : 1Z1-060 Title : Upgrade to Oracle Database 12c

More information

1z0-063.exam. Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0. Oracle. 1z Oracle Database 12c: Advanced Administration

1z0-063.exam. Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0. Oracle. 1z Oracle Database 12c: Advanced Administration 1z0-063.exam Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0 Oracle 1z0-063 Oracle Database 12c: Advanced Administration Version 3.0 Exam A QUESTION 1 Examine the steps to configure

More information

Provide One Year Free Update!

Provide One Year Free Update! QUESTION & ANSWER HIGHER QUALITY, BETTER SERVICE Provide One Year Free Update! https://www.passquestion.com Exam : 1Z0-060 Title : Upgrade to Oracle Database 12c Version : DEMO 1 / 4 1.Your multitenant

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g CONNECT TO TARGET DATABASE USING RMAN $ export ORACLE_SID=crms $ rlrman target / Recovery Manager: Release 11.2.0.1.0 - Production on Sat Jan 31 10:13:56 2015 Copyright (c) 1982, 2009, Oracle and/or its

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO

More information

Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed

Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed Jim Czuprynski Zero Defect Computing, Inc. 1 My Credentials 30+ years of database-centric IT experience Oracle

More information

Oracle - 1z Upgrade to Oracle Database 12c

Oracle - 1z Upgrade to Oracle Database 12c 1 Oracle - 1z0-060 Upgrade to Oracle Database 12c QUESTION: 1 Your multitenant container (CDB) contains two pluggable databases (PDB), HR_PDB and ACCOUNTS_PDB, both of which use the CDB tablespace. The

More information

RMAN: Cross-Platform Backup & Restore Oracle Database 12c for SAP

RMAN: Cross-Platform Backup & Restore Oracle Database 12c for SAP RMAN: Cross-Platform Backup & Restore Oracle Database 12c for SAP Abdel Boukachabine Oracle/SAP Global Technology Center Walldorf, Germany June 2017 abdelrhani.boukachabine@oracle.com Copyright 2017 Oracle

More information

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Reduced Upgrade Memory & Migrate Footprint Oracle Database 12c Sandra Sandra Skehin Skehin Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Safe Harbor Statement The following is intended

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version : DEMO Get Latest &

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management Executive Overview... 3 Introduction... 3 Database

More information

1z z0-060 Upgrade to Oracle Database 12c

1z z0-060 Upgrade to Oracle Database 12c 1z0-060 Number: 1z0-060 Passing Score: 800 Time Limit: 120 min File Version: 7.1 1z0-060 Upgrade to Oracle Database 12c Exam A QUESTION 1 Your multitenant container (CDB) contains two pluggable databases

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO 1 NO.1 Examine

More information

ASM migration process

ASM migration process Management on Dell/EMC Storage Arrays By Zafar Mahmood, Uday Datta Shet, and Bharat Sajnani ASM migration process The process for migrating an Oracle Real Application Clusters (RAC) database from Oracle

More information

Oracle Database 12c: New Features for Administrators NEW

Oracle Database 12c: New Features for Administrators NEW Oracle Database 12c: New Features for Administrators NEW Duration: 5 Days Course Objectives Create, manage and monitor multitenant container database and pluggable databases Manage datafile online operations,

More information

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Duration: 4 Days What you will learn During the Oracle Database

More information

How To Apply Archive Logs Manually In Standby Database Using Rman

How To Apply Archive Logs Manually In Standby Database Using Rman How To Apply Archive Logs Manually In Standby Database Using Rman Using Rman Active Duplicate to create a Standby from a standby. Posted by RMAN_. Let's create some Archivelogs in Primary Database so that

More information

Disaster Recovery: Restore Database from One Server to another Server when Different Location

Disaster Recovery: Restore Database from One Server to another Server when Different Location Disaster Recovery: Restore Database from One Server to another Server when Different Location Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com Step

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

Oracle Database 12c: New Features for Administrators Duration: 5 Days

Oracle Database 12c: New Features for Administrators Duration: 5 Days Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you ll learn about the new and enhanced features

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

More information

What is new on 12c For Backup and Recovery. By: Francisco Munoz Alvarez

What is new on 12c For Backup and Recovery. By: Francisco Munoz Alvarez What is new on 12c For Backup and Recovery By: Francisco Munoz Alvarez About the Speaker Francisco Munoz Alvarez Oracle ACE Director CLOUG (Chilean Oracle Users Group) President LAOUC (Latin American Oracle

More information

Steps Create Physical Standby Database Oracle 9i

Steps Create Physical Standby Database Oracle 9i Steps Create Physical Standby Database Oracle 9i Upgrading from Oracle Database 9i Release 2 (9.2) to Oracle Database 12c Release The standby database is a physical standby database. The following steps

More information

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ]

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] s@lm@n Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] Topic break down Topic No. of Questions Topic 1: Pool 1 112 Topic 2: Pool 2 100 Topic

More information

What s New in 12c for Backup & Recovery? By: Francisco Munoz Alvarez

What s New in 12c for Backup & Recovery? By: Francisco Munoz Alvarez What s New in 12c for Backup & Recovery? By: Francisco Munoz Alvarez About the Speaker Francisco Munoz Alvarez Oracle ACE Director CLOUG (Chilean Oracle Users Group) President LAOUC (Latin American Oracle

More information

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff 1 What s New with Oracle Data Pump in Oracle Database 12c Dean Gagne Consulting Member of Technical Staff Program Agenda Full Transportable Export/Import Exporting Views as Tables Detailed Timestamps for

More information

Oracle Database 12c: New Features for Administrators Ed 2 NEW

Oracle Database 12c: New Features for Administrators Ed 2 NEW Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c: New Features for Administrators Ed 2 NEW Duration: 5 Days What you will learn In the Oracle Database 12c:

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

More information

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version :

Oracle 1Z Oracle 9i: New Features for Administrators. Download Full Version : Oracle 1Z0-030 Oracle 9i: New Features for Administrators Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-030 QUESTION: 204 Which two statements regarding an external table are

More information

DOAG 2013 Oracle 12c Backup & Recovery

DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. About me David Hueber Head of Service Management Senior Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com

More information

Oracle Database 12c R1: New Features for Administrators Ed 2

Oracle Database 12c R1: New Features for Administrators Ed 2 Oracle Database 12c R1: New Features for Administrators Ed 2 Duration 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators Ed 2 course, you ll learn about the new and

More information

Oracle 12C Administration Course Content:

Oracle 12C Administration Course Content: Oracle 12C Administration Course Content: Enterprise Manager and Other Tools Enterprise Manager (EM) Cloud Control home page Enterprise Manager Express home page versus Enterprise Manager Database Control

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Migrating Oracle 11gR2 to Oracle 12cR1

Migrating Oracle 11gR2 to Oracle 12cR1 Migrating Oracle 11gR2 to Oracle 12cR1 Upgrading and migrating Oracle 11gR2 RAC Databases running on legacy infrastructure to Oracle 12c Pluggable Databases running on the latest Dell infrastructure. By:

More information

Technical White Paper August Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces

Technical White Paper August Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces Technical White Paper August 2010 Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces Migrating to Oracle 11g Using DRS with Transportable Tablespaces Contents Contents...

More information

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version : Oracle 1Z0-043 Oracle Database 10g: Administration II Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-043 QUESTION: 172 You lost the index tablespace in your database. You decided

More information

Steps how to duplicate a database to a new machine. Version 10gR2

Steps how to duplicate a database to a new machine. Version 10gR2 Steps how to duplicate a database to a new machine. Version 10gR2 First take a fresh backup of the target database set the ORACLE_* variables If the databse is running in noarchivelog mode, shut it down

More information

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours What you will learn This course advances your success as an Oracle professional in the area of database administration.

More information

"Charting the Course... Oracle 12c New Features for Administrators. Course Summary

Charting the Course... Oracle 12c New Features for Administrators. Course Summary Course Summary Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise Edition. Key features of this product are fully discussed and demonstrated.

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Support Engineer Technical Administrator Technical Consultant Related Training Required Prerequisites Knowledge of Oracle Database 12c Knowledge

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

OCP Oracle Database 12c: Advanced Administration Exam Guide

OCP Oracle Database 12c: Advanced Administration Exam Guide OCP Oracle Database 12c: Advanced Administration Exam Guide (Exam 1Z0-063) Bob Bryla Copyright by McGraw-Hill Education. This is prepublication content and is subject to change prior to publication. 2

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

Recovering Oracle Databases

Recovering Oracle Databases CHAPTER 20 Recovering Oracle Databases In this chapter you will learn how to Recover from loss of a controlfile Recover from loss of a redo log file Recover from loss of a system-critical datafile Recover

More information

Chapter One. Concepts BACKUP CONCEPTS

Chapter One. Concepts BACKUP CONCEPTS Chapter One 1 Concepts Backup and recovery is not a single, discrete subject, but a collection of methods, strategies, and procedures to protect the data in your database and provide a means of recovery

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: +386 1 588 88 13 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Course Topics: Introduction Overview Oracle Database Innovation Enterprise Cloud

More information

Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000

Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000 Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000 Technical White Paper 40563-00 Rev B December 2009 Copyright 2009 by International Business Machines

More information

Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant

Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant Joseph Meeks, Oracle Frank Kobylanski, Oracle Kalyan Kallepally, Wellcome Trust Sanger Institute Program Agenda High Availability

More information

Oracle Database 12c: RAC Administration Ed 1

Oracle Database 12c: RAC Administration Ed 1 Oracle University Contact Us: +7 (495) 641-14-00 Oracle Database 12c: RAC Administration Ed 1 Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you about

More information

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c

More information

ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS

ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS Kirill Loifman, 21/02/2013 Oracle Certified Professional DBA email: loifmkir@gmail.com www: dadbm.com Twitter: @loifmkir ORACLE 12C PLUGGABLE DATABASE (PDB)

More information

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set.

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set. Volume: 148 Questions Question No : 1 memory_target big integer 808M pga_aggregate_target big integer 0 sga_target big integer 0 SQL> SHOW PARAMETER SGA_MAX_SIZE NAME TYPE VALUE sga_max_size big integer

More information

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)?

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? Volume: 176 Questions Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? A. A DBA can check specific tables with the DMU B. The database

More information

Oracle Database 12c: RAC Administration Ed 1 LVC

Oracle Database 12c: RAC Administration Ed 1 LVC Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: RAC Administration Ed 1 LVC Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you

More information

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2010 Upgrade Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade...

More information

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions 1Z0-034 Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-034 Exam on Upgrade Oracle9i/10g to Oracle Database 11g OCP... 2 Oracle 1Z0-034

More information

Course: Oracle Database 12c R2: Administration Workshop Ed 3

Course: Oracle Database 12c R2: Administration Workshop Ed 3 Course: Oracle Database 12c R2: Administration Workshop Ed 3 The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation in administration of an Oracle

More information

Purpose. Configuring ARCHIVELOG mode

Purpose. Configuring ARCHIVELOG mode Purpose This document provides a guide to setting up the backup process specific to Oracle Database Standard Edition One on Dell servers. The following backup process takes advantage of the new Oracle

More information

Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation

Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation Migrate +200 TB databases in less than 1 day Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation $> whoami 20+ years w/oracle 15 years managing Data Pump Database Upgrade SQL*Loader

More information

Oracle Snap Management Utility for Oracle Database v1.3.0 User Guide

Oracle Snap Management Utility for Oracle Database v1.3.0 User Guide January 2016 Oracle Snap Management Utility for Oracle Database v1.3.0 User Guide Part No. E39313-03 Table of Contents Preface... vii Typographical Conventions... vii Access to Oracle Support... viii Introduction...

More information

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version :

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version : Oracle 1Z0-062 Oracle Database 12c - Installation and Administration Download Full version : https://killexams.com/pass4sure/exam-detail/1z0-062 QUESTION: 42 In your database, you want to ensure that idle

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Data Protector. Software Version: Zero Downtime Backup Integration Guide

Data Protector. Software Version: Zero Downtime Backup Integration Guide Data Protector Software Version: 10.00 Zero Downtime Backup Integration Guide Document Release Date: June 2017 Software Release Date: June 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo Oracle Exam Questions 1Z0-052 Oracle Database 11g: Administration I Version:Demo 1. You notice that the performance of the database has degraded because of frequent checkpoints. Which two actions resolve

More information

D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2

D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2 D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2 Czas trwania: Czas trwania: 5 dni / 40 godz. Cena rynkowa: 7 450,00 zł Cena promocyjna: Zadzwoń - 801 30 30 30 Szkolenie autoryzowane:

More information

Databases Clone using ACFS. Infrastructure at your Service.

Databases Clone using ACFS. Infrastructure at your Service. Infrastructure at your Service. About me Infrastructure at your Service. David Hueber COO Principal Consultant +41 79 963 43 68 david.hueber[at]dbi-services.com Page 2 Who we are dbi services Experts At

More information

Migrate +230 TB databases in less than 1 day

Migrate +230 TB databases in less than 1 day Migrate +230 TB databases in less than 1 day Mike Dietrich Master Product Manager Database Upgrades & Migrations Oracle Corporation Copyright 2017, Oracle and/or its affiliates. All rights reserved. Germany

More information

B. Enable secure access to the DBaaS instance VM and database instance from remote hosts by using SSH.

B. Enable secure access to the DBaaS instance VM and database instance from remote hosts by using SSH. Volume: 70 Questions Question No: 1 You want all your colleagues to be able to access the compute node associated with an Oracle Database Cloud - Database as a Service (DBaaS) instance. You want them to

More information

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Oracle University Contact Us: +27 (0)11 319-4111 Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Duration: 1 Day What you will learn This package provides everything an

More information

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z Course Outline [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z0-063 18 Jun 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards

More information

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z Course Outline [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 28 Apr 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards

More information

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

More information

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle 1z0-052 Oracle Database 11g: Administration I Version: 7.0 Topic 1, Volume A Oracle 1z0-052 Exam QUESTION NO: 1 You notice that the performance of the database has degraded because of frequent checkpoints.

More information

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Oracle University Contact Us: 0845 777 7711 Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Duration: 5 Days What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach

More information

Oracle Database 12c: New Features For Administrators

Oracle Database 12c: New Features For Administrators This is a multi-volume textbook kit that covers the major new features of the Oracle 12c database of interest to database and other enterprise administrators. General Description The single most important

More information

Oracle Database 11g: Administration Workshop I DBA Release 2

Oracle Database 11g: Administration Workshop I DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 What you will learn: This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins

More information

RMAN Backups and Reporting

RMAN Backups and Reporting Chapter 5 RMAN Backups and Reporting Chapter 4 provided the details on configuring RMAN and using specialized features to control the behavior of RMAN. After you consider which features you require, you

More information

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product Oracle EXAM - 1Z0-058 Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration Buy Full Product http://www.examskey.com/1z0-058.html Examskey Oracle 1Z0-058 exam demo product

More information

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Code: Lengt h: URL: 12cDB-BR 5 days View Online This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your

More information