12.1 Multitenancy in real life

Size: px
Start display at page:

Download "12.1 Multitenancy in real life"

Transcription

1 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest,

2 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation or Oracle products Is strictly based on documented features and on-site experiences Is not about showing Multitenancy basics and command syntaxes

3 Agenda Multitenancy overview Current environment Cloning Backup-Recovery Transparent Data Encryption Miscellaneous Future plans

4 Multitenancy overview Consolidation pre-12c Too much overhead per instances 1 SGA per 1 database instance Multiple background processes per database instance Operational environment multiplied by database instance Complicated patching, upgrade process

5 Multitenancy overview 12c (12.1) Multitenant Architecture Multitenant licence - Not required with one PDB Container database (CDB) - CDB$ROOT Pluggable Databases (PDB) - PDB$SEED (created internally) - Additional user-created PDB s Maximum number of PDB s: 252 Transparent for end-users PDB s are transferable among CDB s Create (pluggable) database by cloning

6 Current Environment 2 x Exadata X5-2 1/4 Rack - 36CPU core, 256GB RAM per compute node - 36x8TB 7200RPM disks TB (raw) Flash Upgraded from 1/8 to 1/4 in Q12017 Virtualized configuration Oracle Linux 6.8 on compute nodes, VM s Oracle RDBMS, GI: (with latest Bundle Patch) Rack1: - 2 VM s: UAT/Test/Pre-Production RAC database - 2 VM s: DR RAC Database for Production environment Rack2: 2 VM s: Production RAC database

7 Current Environment Contd. UAT, Test, Pre-Production - 1 container DB, 158 client PDB + 3 release seed PDB - 1 PDB per client - Multiple customer with more than 1 PDB for different testing purposes - Number of PDB s constantly changing Production - 1 container DB, 109 live PDB + 3 release seed PDB - PDB s for 109 different customer - New PDB only for new customer DR (disaster recovery) site - Physical standby database for production - DR Invocation tests: Every six months

8 Current Environment Contd. SaaS vs On-Premise - Software-as-a-Service (SaaS - Cloud) solution for the customers - SaaS started in Q22015: 30 Customer customer on SaaS by the end of 2017, - About 150+ customer are on-premise (They host the infrastructure) - By the end of 2019: No on-premise customer, SaaS: 300+ SaaS goals - Optimal Total Cost of Ownership (TCO) - Scaling environment - Cloud-style services for the customers 1 Pluggable Database - 1 version of in-house developed application - Created from release seed PDB - 4 schema, 5 tablespaces (besides Oracle core) Client Application - Oracle Fusion Middleware 11g, 12c - Oracle Forms, Reports - Oracle BI Discoverer 11g - HTML, JavaScript, PL/SQL (mod_plsql)-based Portal lines of PL/SQL code

9 Cloning Goals, requirements, considerations Why do we clone? - Create new customer environment (PDB) Not really a challenge - Refresh PDB s from other PDB s Which environment to clone? - Usually Production to UAT/Test - Go-live from Pre-production to Production Downtime allowed? Out of vs during business hours? Current state or PITR required? How do we do it?

10 Cloning Contd. No downtime allowed How do we do it? - DataPump Export/Import? - RMAN (active) duplicate - Other? In a non-multitenant environment: - Database clone with RMAN (active) duplicate does the job (most of the times) In a Multitenant environment (12R1): - Cloning one or more PDB s requires an auxiliary container database instance DataPump is out of the question - Too slow, too complex, too fragile

11 Cloning Contd. Cloning PDB with no downtime using RMAN duplicate 1. Prepare and start auxiliary database instance Parameter file(init.ora/spfile), TNS Listener, password file, ASM diskgroup/filesystem, etc 2. Do the duplication with RMAN rman target auxiliary RMAN> duplicate target database to <auxcdb> 2> pluggable database <sourcepdb> from active database; 3. Unplug the PDB from auxiliary CDB sqlplus as sysdba SQL> alter pluggable database <sourcepdb> close immediate; SQL> alter pluggable database <sourcepdb> unplug into <directory>/sourcepdb.xml'; 4. Plug the clone PDB in the target CDB sqlplus as sysdba SQL> alter pluggable database <sourcepdb> close immediate instances=all; SQL> drop pluggable database <sourcepdb> including datafiles; SQL> alter pluggable database <sourcepdb> unplug into <directory>/sourcepdb.xml ; SQL> alter pluggable database <sourcepdb> open instances=all;

12 Cloning Contd. Cloning PDB with minimal downtime 1. Restart source PDB in read only mode sqlplus as sysdba SQL> alter pluggable database <sourcepdb> close immediate instances=all; SQL> alter pluggable database <sourcepdb> open read only; 2. Create local clone PDB SQL> create pluggable database <source_clone> from <sourcepdb>; 3. Restart source PDB in read write mode SQL> alter pluggable database <sourcepdb> close immediate; SQL> alter pluggable database <sourcepdb> open instances=all; 4. Do the clone to the target container sqlplus as sysdba SQL> alter pluggable database pdb1 close immediate instances=all; SQL> drop pluggable database pdb1 including datafiles; SQL> CREATE DATABASE LINK LINK_PDB CONNECT TO <DBA_USER> IDENTIFIED BY <PASSWORD> 2> USING 'SOURCE_CLONE_TNS ; SQL> create pluggable database pdb1 from pdb1@link_pdb1; SQL> alter pluggable database pdb1 open instances=all;

13 Cloning Contd. Analysis No Downtime Minimal Downtime Scriptable? Easy to automate? Yes, fairly easy to script and automate Yes, fairly easy to script and automate Reasonable resource requirements? Is it scaling? Is it fast enough Every cloning process requires an auxiliary CDB to be created as well as the PDB to be cloned doubles the space usage temporarily. Auxiliary CDB causes significant memory and CPU overhead (SGA and background) Multiple cloning at the same time is problematic due to large footprint of one or more auxiliary CDB Experience in our environment: One cloning session for one PDB takes minutes (overall) due to large number of PDB s in the source container Provisionally doubling the space used by local clone for each cloning session (negligible). Other than that resource requirements are acceptable Minimal footprint, scaling fairly well without significant contention Experience in our environment: One cloning session for one PDB takes minutes (overall) Acceptable by customers? No Yes (with restrictions) Conclusion: Minimal downtime cloning procedure is implemented, automated, mostly during out of business hours or in accordance with customer schedule

14 Backup/Recovery Backup/Recovery strategy - CDB+PDB full backup: Once a week - Incremental cumulative CDB+PDB backup: 6 times a week - Archivelog backup is part of each backup days retention: 30 days on disk, 70 days on tape Our cloning procedure impact the Backup/Recovery strategy - Dropping, re-creating PDB s may invalidate previous backups - Clone PDB is not the same as the pre-clone PDB Point-in-time Recovery (PITR) of PDB s frequently invoked - After failed application patch installation - User errors on large volume of data - After clone, to restore pre-clone state - Backup/Recovery testing - RMAN duplicate with auxiliary instance is used (backup based cloning) - User errors on small volume: Flashback Query, Transaction, - FLASHBACK DATABASE is not used PDB level operation is not possible

15 Backup/Recovery Contd. PDB Point-in-time Recovery For PDB that was not dropped earlier - PDB PITR with in-place restore, recovery - Only CDB$ROOT files restored to auxiliary place For PDB that was dropped earlier - Example: Cloning - PDB PITR using auxiliary instance PDB PITR with auxiliary instance issues - How to Restore - Dropped Pluggable database (PDB) in Multitenant (Doc ID ) - Bug RMAN Recover of Dropped PDB in Multitenant may fail with errors like RMAN-6813 (Doc ID ) - Bug : BACKUP BASED DUPLICATE FAILS(WITH CATALOG) - RMAN (WITH DROPPED PDB NAME) - RMAN During Cloning Pluggable Database in 12c CDB (Doc ID )

16 Disaster Recovery Oracle Data Guard, Physical Standby Database Maximum Availability protection mode No licence for Active Data Guard Snapshot Standby conversion for DR Invocation Tests No Fast-start Failover configured - DR Invocation is always manually triggered Data Guard in Multitenant environment (12R1): - Role transition at the CDB level only - Creating PDB s in primary could cause problems at standby side - standbys=none clause is important in most scenarios

17 Disaster Recovery Contd. Data Guard in Multitenant environment (12R1) Creating PDB from PDB$SEED - Datafiles get transferred over to standby database - Redo Apply process can copy the files to the standby site - Managed Recovery Process (MRP) continues to apply the redo information Creating PDB as a clone of non-pdb$seed may break MRP: - If Active Data Guard is not used and standbys=none clause omitted from create pluggable database statement - standbys=none will disable the managed recovery for the cloned PDB - Managed recovery must be enabled manually at standby side Creating PDB as a clone of non-pdb$seed works properly when Active Data Guard is used - Local clones: no manual intervention is needed - Remote clones via db link: Parameter standby_pdb_source_file_dblink is recommended to set Plugin operations - Parameter standby_pdb_source_file_directory is recommended to set

18 Disaster Recovery Contd. Disaster Recovery Invocation Tests Invoked every six month Snapshot Standby database is used - Fully updatable standby database - Flashback Database/Guaranteed restore point technology is used here - MRP is stopped - Physical Standby Database is converted to Snapshot Standby - Only a few PDB is used for DR testing by a few customers Middleware servers have their own DR pair servers Application production FORMS servers - Tnsnames.ora contains DR host references as well - They are not used for DR invocation Tests Application DR URL s are separated from Production for the test - They re removed from Load Balancer for the DR Tests - Full featured replica of production servers

19 Disaster Recovery Contd. Disaster Recovery Invocation Tests - Steps Converting Physical Standby Database to Snapshot Standby sqlplus sys/login@<drcdb> as sysdba SQL> alter database recover managed standby database cancel; SQL> alter database convert to snapshot standby; SQL> alter database open; *: Followed by opening remaining RAC instances Start required PBD s only SQL> alter pluggable database ALL close immediate; *: due to save state SQL> alter pluggable database PDB1 open; SQL> alter pluggable database PDB2 open; SQL> alter pluggable. Perform application tests Convert Snapshot Standby to Physical Standby sqlplus sys/login@<drcdb> as sysdba SQL> shutdown immediate; *: ALL RAC instance must be shut down SQL> startup mount; *: only one RAC instance should be started SQL> alter database convert to physical standby; SQL> alter database recover managed standby database disconnect;

20 Disaster Recovery Contd. Converting back to Physical Standby Database may fail SQL> alter database convert to physical standby; alter database convert to physical standby * ERROR at line 1: ORA-38769: FLASHBACK DATABASE failed after modifying data. ORA-00600: internal error code, arguments: [kcvvra_pdbinc], [], [], [], [], [],[], [], [], [], [], [] General: Bugs, useful Notes - ORA [KCVVRA_PDBINC] WHILE CONVERTING SNAPSHOT STANDBY TO PHYSICAL STANDBY (Doc ID ) - Data Guard Impact on Oracle Multitenant Environments (Doc ID ) - standby_pdb_source_file_dblink, standby_pdb_source_file_directory (Doc ID ) - Making Use Deferred PDB Recovery and the STANDBYS=NONE Feature with Oracle Multitenant (Doc ID )

21 Transparent Data Encryption (TDE) Used to protect data files (Where data is stored) TDE Tablespace Encryption used Two-tiered, key-based architecture Password-based vs auto-login software keystore consideration Hardware keystore is not considered

22 Transparent Data Encryption (TDE) Contd. Password-based vs Auto-login keystore Software keystore (wallet) - Stores TDE master encryption key - Location is for CDB level, not PDB - sqlnet.ora configuration - ENCRYPTION_WALLET_LOCATION - RAC: shared location ASM or other cluster filesystem Auto-login keystore - Convenient when CDB and/or PDB s are restarted - No manual intervention needed from operations team - Works only with static set of keys - Does not support new key imports (i.e.: During PDB cloning) Password-based keystore - Requires intervention from operations team during CDB/PDB restart - Possible ORA-28365: wallet is not open errors - CDB/PDB level startup trigger used to open keystore wallet - Master key export/import required when PDB s being cloned

23 Transparent Data Encryption (TDE) Contd. Restarting CDB/PDB s with password-based keystore/wallet Create keystore/wallet CDB level only sqlplus sys/login@<cdb> as sysdba SQL> administer key management CREATE KEYSTORE <DIR> * identified by <Wallet_Password>"; *: DIR should be the same as ENCRYPTION_WALLET_LOCATION in sqlnet.ora Open keystore/wallet CDB level sqlplus sys/login@<cdb> as sysdba SQL> administer key management SET KEYSTORE OPEN identified by <Wallet_Password> CONTAINER=ALL; Open keystore/wallet PDB level sqlplus sys/login@<pdb> as sysdba SQL> administer key management SET KEYSTORE OPEN identified by <Wallet_Password> ; AFTER STARTUP trigger at CDB/PDB level - To avoid manual operations during CDB/PDB startup - ADMINISTER KEY command used in WRAP d procedure

24 Transparent Data Encryption (TDE) Contd. Cloning PDB with TDE password-based keystore/wallet Perform PDB clone (as per discussed earlier) - PDB_PLUG_IN_VIOLATIONS view will show PDB needs to import keys from source - PDB is only open in restricted mode until TDE issue is not solved Export master key in source PDB sqlplus sys/login@<sourcepdb> as sysdba SQL> administer key management set keystore open identified by <Wallet_Password>"; --open the wallet in the PDB if not open SQL> administer key management EXPORT encryption keys with secret <encryption_key_pwd>" TO <DIR>/key.exp' identified by <export_password>"; --export master key for source pdb from TDE wallet Transfer export file (when remote clone is performed) Import master key in target PDB sqlplus sys/login@<targetpdb> as sysdba SQL> administer key management set keystore open identified by <Wallet_Password>"; --open the wallet in the PDB if not open SQL> administer key management IMPORT encryption keys with secret <encryption_key_pwd>" FROM <DIR>/key.exp' identified by <export_password> WITH BACKUP; --import master key into TDE wallet Restart clone PDB (targetpdb) in target CDB - PDB_PLUG_IN_VIOLATIONS view should be cleared for TDE errors - PDB should be open in read-write mode

25 Miscellaneous Init parameters - init.ora/spfile is common for all PDB s, CDB level only - PDB: ispdb_modifiable in v$system_parameter - Experience: Set job_queue_processes parameter at CDB level only - Experience: Set nls_* parameters at CDB level only - db_files parameter CDB level Manage pluggable databases (PDB) - Create/Drop only at CDB level - PDB level: startup/shutdown as usual - CDB level: alter pluggable database close/open - alter pluggable database save state Multitenancy in RAC environment - instances=all clause cluster level - (g)v$pdbs view

26 Miscellaneous Contd. Scheduler jobs and job_queue_processes init parameter - Default value: Problematic with scheduler jobs per PDB (i.e.: 60x160=9600) - Setting at PDB level impacts CDB and other PDB s as well - job_queue_processes in multitenant database (Doc ID ) - Experience: job_queue_processes=36 (Number of CPU cores) Patching CDB and PDB - Usually in rolling fashion in RAC environment - Datapatch utility (as of 12.1) is used for dictionary patching - Datapatch could experience problems with high number of PDB s - Bug datapatch takes significant time with many pdb s - Bug datapatch gets deadlock messages on 'insert into metaview$ Patching Production and Test - With time difference - Could impact cloning due to different patch level - Datapatch must be run explicitly during each cloning session

27 Future plans 12c Release 2 (12.2) upgrade - PDB cloning: Online cloning, PDB Refresh - Disaster Recovery: Subset Standby (Active Data Guard needed) - Transparent Data Encryption: TDE Tablespace Live Conversion - Resource Manager: Memory Resource Management, PDB Performance Profiles - Backup/Recovery: Flashback PDB, - Plenty of known bugs are fixed - Maximum number of PDB s: 4096 Split PDB s into multiple CDB s - Separate software home for each - Reduce single point of failure on 1 CDB configuration - Allows to provide different service levels for customers

28 Thank you for your attention! Author: Jozsef Horvath

Oracle Multitenant What s new in Oracle Database 12c Release ?

Oracle Multitenant What s new in Oracle Database 12c Release ? Oracle Multitenant What s new in Oracle Database 12c Release 12.1.0.2? Saurabh K. Gupta Principal Technologist, Database Product Management Who am I? Principal Technologist, Database Product Management

More information

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

Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Duration: 5 Days What you will learn Throughout the lessons of the Oracle Database 12c

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

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 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

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

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

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 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

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

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 - Oracle Database 12c R2: Administration Workshop Ed 3

Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Code: Lengt h: URL: 12cDB-A 5 days View Online The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with

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 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

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

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

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

"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

Multitenant Databases. Arup Nanda Longtime Oracle DBA

Multitenant Databases. Arup Nanda Longtime Oracle DBA Multitenant Databases Arup Nanda Longtime Oracle DBA One App: One DB User SIEBEL User SIEBEL User SIEBEL 2 Database User Issue Application 1 Application 2 Application 3 Application 1 Application 2 Application

More information

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now The Speaker Alain Fuhrer, born in 1986 Bachelor in computer science Working with Oracle databases for about 12 years now Head IT Databases at Swiss Mobiliar Insurance REPORTS ANALYTICS AUF ON OLTP DATEN

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

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

ORACLE DBA I. Exploring Oracle Database Architecture

ORACLE DBA I. Exploring Oracle Database Architecture ORACLE DBA I Exploring Oracle Database Architecture Introducing Oracle Database Relation Database Models Oracle SQL and PL/SQL Oracle Database Server Architecture Connecting to Oracle Databases Oracle

More information

Oracle Database Server 12c Pros and Cons

Oracle Database Server 12c Pros and Cons Oracle Database Server 12c Pros and Cons Hans Forbrich Forbrich Consulting Ltd Based in Alberta, Canada Fact Oracle DB 12c is the largest architectural change since Oracle8i Fact Oracle documentation

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

High Availability Best Practices for Database Consolidation

High Availability Best Practices for Database Consolidation High Availability Best Practices for Database Consolidation The Foundation for Database-as-a-Service ORACLE WHITE PAPER APRIL 2016 Table of Contents Executive Overview 1 Introduction 2 Operating System

More information

Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex

Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex kgilpin@advizex.com Agenda Brief Description and Justification of Multitenant CDB/PDB Creation

More information

Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option

Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option Eric Rudie Master Principal Sales Consultant Oracle Public Sector 27 September 2016 Safe Harbor Statement The

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: 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

Agenda. Oracle 12.2 New features Multi-Tenancy. Naming Standard. Naming Standard cont. Create Pluggable Database / Cloning.

Agenda. Oracle 12.2 New features Multi-Tenancy. Naming Standard. Naming Standard cont. Create Pluggable Database / Cloning. Agenda Overview Oracle 12.2 New features Multi-Tenancy Naming Standard Create Pluggable database / Cloning Create / start services for specific PDBs Backup / Restore Pluggable Database Flashback DataGuard

More information

Oracle Database 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

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

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

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

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11. Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 7 Table of

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

RMOUG Training Days 2018

RMOUG Training Days 2018 RMOUG Training Days 2018 Pini Dibask Product Manager for Database Tools February 22 nd, 2018 Winning Performance Challenges in Oracle Multitenant About the Speaker Pini Dibask, Product Manager for Database

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

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

ZDLRA High Availability for Backup and Recovery

ZDLRA High Availability for Backup and Recovery ZDLRA High Availability for Backup and Recovery Oracle Server Technology High Availability Systems Development Maximum Availability Architecture September 2018 Safe Harbor Statement The following is intended

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

Use Case: Enhance security for a database with sensitive data. Koen Van Bastelaere Oracle DBA

Use Case: Enhance security for a database with sensitive data. Koen Van Bastelaere Oracle DBA Use Case: Enhance security for a database with sensitive data Koen Van Bastelaere Oracle DBA Agenda About me The project OS Database Application Encryption and identity Q&A 2 Agenda About me The project

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 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 - 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

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: 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

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

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

Feature of our Oracle Databases - Why should we migrate to Multitenant architecture

Feature of our Oracle Databases - Why should we migrate to Multitenant architecture Feature of our Oracle Databases - Why should we migrate to Multitenant architecture Radosław Cisz rcisz@dataconsulting.pl Multitenant New Terminology Basic terminology connected with multitenant architecture

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

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

Securing Oracle 12 Multitenant Pluggable Databases

Securing Oracle 12 Multitenant Pluggable Databases Securing Oracle 12 Multitenant Pluggable Databases January 19, 2016 Michael Miller Chief Security Officer Integrigy Corporation Phil Reimann Director of Business Development Integrigy Corporation About

More information

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK 31 October, 2017 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK Document Filetype: PDF 111.76 KB 0 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK You took this cold RMAN backup from a development database, your developpers

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

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

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

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 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM ORACLE 12C NEW FEATURE A Resource Guide NOV 1, 2016 TECHGOEASY.COM 1 Oracle 12c New Feature MULTITENANT ARCHITECTURE AND PLUGGABLE DATABASE Why Multitenant Architecture introduced with 12c? Many Oracle

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

"Charting the Course... Oracle 18c DBA I (5 Day) Course Summary

Charting the Course... Oracle 18c DBA I (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager Database Express (EMDE), SQL Developer and SQL*Plus.

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

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c: OCM Exam Preparation

More information

RACifying Multitenant

RACifying Multitenant RACifying Multitenant Arup Nanda Principal Database Architect Starwood Hotels Deba Chatterjee Principal Product Manager Oracle Multitenant Agenda 1 3 4 Introduction Oracle Multitenant and RAC Basics Why

More information

Tips and Tricks on Successful Upgrade to 11gR2

Tips and Tricks on Successful Upgrade to 11gR2 Tips and Tricks on Successful Upgrade to 11gR2 Project Approval Get buy in from CIO and other groups Justify the need End of premier support Extended Support Cost To be current Benefits of new release

More information

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases?

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? Volume: 92 Questions Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? A. DB_UNIQUE_NAME must be specified differently for each pluggable database within

More information

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 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

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata Exadata MAA Best Practices Series Session 6: Migrating to Exadata Doug Utzig Doug Utzig Exadata and MAA Best Practices Exadata MAA Best Practices Series 1. E-Business Suite on Exadata

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

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

Oracle Database 12c: Data Guard Administration

Oracle Database 12c: Data Guard Administration Oracle University Contact Us: + 38516306373 Oracle Database 12c: Data Guard Administration Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration Ed 1 training teaches

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

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Richard Exley Ray Dutcher Richard Exley, Ray Dutcher Oracle Applications, Exadata and MAA Best Practices Exadata

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

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

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Code: Lengt h: URL: D94327GC10 5 days View Online The Oracle Database 12c: OCM Exam Preparation Workshop is designed for those candidates

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

Oracle 12c Dataguard Administration (32 Hours)

Oracle 12c Dataguard Administration (32 Hours) Oracle 12c Dataguard Administration (32 Hours) Course Topics Introduction to Oracle Data Guard What Is Oracle Data Guard? Types of Standby Databases Types of Data Guard Services Role Transitions: Switchover

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

Oracle Database 12c: Data Guard Administration LVC

Oracle Database 12c: Data Guard Administration LVC Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c: Data Guard Administration LVC Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration

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

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

Accenture Enkitec Group PATCHING ORACLE MARTIN BACH #DOAGDB17

Accenture Enkitec Group PATCHING ORACLE MARTIN BACH #DOAGDB17 Accenture Enkitec Group PATCHING ORACLE MARTIN BACH #DOAGDB17 ORACLE PATCHING AN OVERVIEW Patching does not need to be scary Knowing what to do and testing should provide enough confidence to rise to the

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 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

Oracle Database 12c R2: RAC Administration Ed 2

Oracle Database 12c R2: RAC Administration Ed 2 Oracle University Contact Us: +36 1224 1760 Oracle Database 12c R2: RAC Administration Ed 2 Duration: 4 Days What you will learn This Oracle Database 12c R2: RAC Administration training will teach you

More information

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

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 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

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 12c Essentials. Version: Demo

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 12c Essentials. Version: Demo Vendor: Oracle Exam Code: 1Z0-497 Exam Name: Oracle Database 12c Essentials Version: Demo QUESTION 1 Which statement about CDB architecture is true? A. Oracle-supplied metadata resides only in the root

More information

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps Oracle 1Z0-497 Dumps with Valid 1Z0-497 Exam Questions PDF [2018] The Oracle 1Z0-497 Oracle Database 12c Essentials exam is an ultimate source for professionals to retain their credentials dynamic. And

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Recovery Manager (RMAN): Not Just for Backups Anymore Steven Wertheimer, Oracle, Senior Director Jeff Branan, TDS Telecom, Database

More information

Incrementally Updating Backups Tips and Tricks

Incrementally Updating Backups Tips and Tricks Infrastructure at your Service. Incrementally Updating Backups Tips and Tricks Oracle 12.1.0.2 - Linux x86 64bit About me Infrastructure at your Service. William Sescu Consultant +41 78 674 12 90 william.sescu@dbi-services.com

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

Oracle Database 12c for SAP

Oracle Database 12c for SAP Oracle Database 12c for SAP Oracle Multitenant Christoph Kersten Oracle/SAP Global Technology Center Walldorf, Germany November 2016 Safe Harbor Statement The following is intended to outline our general

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

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Contents Managing Database Storage Structures Using Enterprise Manager Database Express... 1 Overview... 2 Configuring

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

You'll even like your Data Guard more with Flashback

You'll even like your Data Guard more with Flashback You'll even like your Data Guard more with Flashback Hervé Schweitzer Mathias Zarick München, 26.01.2010 Baden Basel Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart

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