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

Size: px
Start display at page:

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

Transcription

1

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

3 Who am I? Principal Technologist, Database Product Management at Oracle Author of Packt s Oracle Advanced PL/SQL Developer Professional Guide, Technical Reviewer Blog: saurabh.h.gupta@oracle.com 3

4 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle.

5 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

6 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

7 Oracle Multitenant A new architecture for consolidating databases and simplifying operations PDBs GL OE AP Self-contained PDB for each application Applications run unchanged Rapid provisioning (via clones) Portability (via pluggability) CDB Root Common operations performed at CDB level Manage many as one (upgrade, HA, backup) Granular control when appropriate Complementary to VMs Shared memory and background processes More applications per server

8 Why Consolidate? Key is to maximize productive use of resources Unconsolidated Overheads replicated for each workload Competing workloads interfere with each other Net throughput is limited and gridlock is possible Consolidated Single, shared set of overheads Greatly reduced competition between workloads Improved throughput and good response time

9 Multitenant New Features in Cloning Subset by tablespace Metadata-only clone Remote clone (including snapshots) File system-agnostic cloning via dnfs(clonedb = true) SQL Cross PDB Queries New SQL clause to aggregate data across PDBs select ENAME from containers(scott.emp) where CON_ID in (45, 49); PRIMARY STANDBY Standby & Logging New standbys clause (all none) Nologging clause at PDB level Additional Features Flashback data archive Temporal SQL Support Maintains state of PDBs between CDB restarts Compatible with DB In-Memory

10 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

11 Multitenant for Provisioning Fast cloning of PDBs GL-1 GL-2 AP-1 AP-2 PO-1 PDBs can be cloned from within the same CDB PDBs can be cloned from remote CDBs GL OE AP PO PDBs can be cloned from non-cdbs Thinly provision snapshot clones in seconds

12 Subset Conversion : USER_TABLESPACE clause New Features in Allows a user to specify which tablespaces need to be available in the new PDB What? Convert cumbersome schema based consolidations to much more agile and efficient PDBs Why? create pluggable database USER_TABLESPACE = NONE ALL ( tbs1, tbs2 ) How?

13 Subset Conversion : USER_TABLESPACE clause Demonstration SQL> create pluggable database PDB_TBS1 from PDB1 file_name_convert=('pdb1','pdb_tbs1') user_tablespaces=('tbs1'); Pluggable database created. SQL> alter pluggable database PDB_TBS1 open; Pluggable database altered. SQL> conn scott/tiger@db12cvm1:1521/pdb_tbs1 Connected. SQL> select tablespace_name, status from user_tablespaces; TABLESPACE_NAME STATUS USERS OFFLINE TBS1 ONLINE TBS2 OFFLINE Post clean-up operations are required for database consistency

14 Subset Conversion : Metadata only clone New Features in Create a clone of a PDB with only the data model but no data Facilitate rapid provisioning of development environments create pdbxfrom pdbyno data; What? Why? How?

15 Subset Conversion : Metadata only clone Demonstration SQL> create pluggable database PDB_NODATA from PDB1 file_name_convert=('pdb1','pdb_nodata') no data; Pluggable database created.

16 Remote Clone a Non-CDB as a PDB New Features in Adopt non-cdb as PDB by cloning over database link Remote cloning is fully supported in Create PDB from NON$CDB@dblink What? Why? How?

17 Remote Clone a Non-CDB as a PDB Non-Container Database SQL> create pluggable database PDB_ORCL from NON$CDB@orcl file_name_convert=( orcl', pdb_orcl'); Pluggable database created. SQL> alter session set container = pdb_orcl; Session altered. SQL>$ORACLE_HOME/rdbms/admin/noncdb_to_pdb.sql

18 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

19 Manage Many Databases as One with Multitenant One standby database covers all pluggable databases GL OE AP GL OE AP Production Container Database Standby Container Database

20 STANSBYS clause Plugging in a PDB New STANDBYS=NONE clause in Allows you to plug in a PDB at the primary and defer the work at the standbys New PDB at standby is created with offline data files Redo apply keeps running, new PDB redo is ignored You sort out the data files at the standby when ready to ENABLE RECOVERY Has no impact on Role Transitions Full instructions and procedures can be found at: Making Use of the STANDBYS=NONE Feature (Doc ID ) 20

21 STANDBYS clause Plugging in a PDB SQL> create pluggable database PDB_DMY from PDB_FIN tempfile reuse STANDBYS=NONE; Pluggable database created. SQL> show pdbs STANDBY CON_ID CON_NAME OPEN MODE RESTRICTED PDB$SEED READ ONLY NO 3 PDB_FIN READ ONLY NO 4 PDB_DMY MOUNTED

22 STANDBYS clause How the PDB appears on the STANDBY? STANDBY SQL> select name, recovery_status from v$pdbs; NAME RECOVERY PDB$SEED ENABLED PDB_FIN ENABLED PDB_DMY DISABLED SQL> select name, status from v$datafile; NAME STATUS /u01/app/oracle/product/ /dbhome_1/dbs/unnamed00004 SYSOFF /u01/app/oracle/product/ /dbhome_1/dbs/unnamed00005 RECOVER /u01/app/oracle/product/ /dbhome_1/dbs/unnamed00006 RECOVER

23 STANDBYS clause PDB plug in at the STANDBY (Doc ID ) Restore the PDB datafiles from primary to standby RMAN preferred as it will rename the datafilesin the standby control file. Enable recovery on PDB Restart standby database in mount mode and disable the redo apply in broker ALTER PLUGGABLE DATABASE ENABLE RECOVERY Enable the redo apply of physical standby in Data Guard broker SQL> select name, status from v$datafile; NAME STATUS DATA/YODASTBY/0063D458AAACA633E0537A28890A6CD1/DATAFILE/system SYSTEM +DATA/YODASTBY/0063D458AAACA633E0537A28890A6CD1/DATAFILE/sysaux RECOVER +DATA/YODASTBY/0063D458AAACA633E0537A28890A6CD1/DATAFILE/users RECOVER

24 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

25 CONTAINERS Clause New Features in With the containers clause data can be aggregated from identical tables/views across many PDBs from the root container Provide a way to aggregate user created data from multiple PDBs in the same container select ENAME from containers(scott.emp) Where CON_ID in (45, 49); What? Why? How?

26 Data Warehouse Multitenant architecture approach Country 1 DWH / LDS Country 2 DWH / LDS Country 3 DWH / LDS access PDBs Analytical Layer Countries Reg1 Reg2 Reg3 Reg4 RegN common data model Group Level DWH -GDS access PDBs through CDB without DB links Analytical Layer Group

27 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

28 Faster PDB Startups New Features in New clause to preserve PDBs open mode across CDB restarts Reduce Application Downtime in planned or Unplanned Outages alter pluggable database pdb1 save discard state What? Why? How?

29 Faster PDB Startups SQL> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED PDB$SEED READ ONLY NO 3 PDB1 READ WRITE NO 4 PDB_NODATA READ WRITE NO SQL> ALTER PLUGGABLE DATABASE pdb_nodata SAVE STATE; SQL> shutdown SQL> startup SQL> SELECT con_name, instance_name, state FROM dba_pdb_saved_states; CON_NAME INSTANCE_NAME STATE PDB_NODATA cdb1 OPEN SQL> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED PDB$SEED READ ONLY NO 3 PDB1 READ WRITE NO 4 PDB_NODATA MOUNTED NO

30 PDB File placement in OMF New Features in PDB data file structure independent of the container database file destination What? Allow faster unplug / plug of PDBs across containers Why? CREATE_FILE_DEST allows administrators to set a default location for data files in the PDB How?

31 Database In-Memory Works (Better) with Multitenant Multitenant consolidation gives back resources that DB In-Memory needs Consolidation with Multitenant frees up Oracle Database In-Memory wants Memory Memory CPU Cycles CPU Cycles GL OE AP DB In-Memory Order Fact Column Format

32 In-Memory and Multitenant INMEMORY_SIZE = 0GB INMEMORY_SIZE = 4GB INMEMORY_SIZE = 16GB GL OE AP INMEMORY_SIZE = 20GB

33 Agenda Multitenant Architecture Overview Enhancements to Cloning Standbys Cross-Container Aggregation Additional Features Use Cases

34 Multitenant for Development and Testing Fast, flexible copy and snapshot of pluggable databases GL GL GL GL OE AP Master (Dev1) (Dev2) Production Container Database Development Container Database

35 Oracle Multitenant for Database as a Service Pick from standard sizes and service levels GOLD RAC, Data Guard 8 SILVER RAC large small medium 8 BRONZE Backups

36 Consolidation of Disparate Applications Simplify, standardize, reduce risk, lower costs and upgrade SLAs with Multitenant 11g 12c 12c 9i 11g 12c 10g 12c 12c 10g Databases To Manage 12c 11g Deferred Maintenance: Behind on Patches Seldom Backed Up MySQL SQL Server Scalability Oracle and Conversion High Availability Utilities Limited Available Capacity SILVER Oracle Database 12c Multitenant Container Database Silver SLA

37 Oracle Multitenant for Software as a Service Multitenancy implemented by the Database, not the Application Customer 1 Customer 2 Customer 3 Customer 4 Customer 5 Customer 6 Customer 7

38 Multitenant. Perfect for ISVs Packaged apps and reference data are easily distributed Jolt! V6.1 OE Jolt! V7.3 AP Jolt! v8.2 Jolt! Applications Corporation Development Container Database Jolt! v8.2 Jolt! v7.3 OE GL AP AP Customer Container Database

39 Plug Into the Cloud with Oracle Multitenant A pluggable database is a portable database easy to migrate to the cloud GL GL GL GL OE AP Master (Dev1) (Dev2) On-Premises Container Database Cloud-Based Container Database

40 Analytics Sandbox Provisioning Provision in an instant; analyze at the speed of thought Product Dimension Production Data Warehouse Industry Dimension Read-Writeable Analytics Sandbox DB In-Memory Order Item Fact DW Region Dimension Order Fact Order Fact Column Format Partitions Quarter Dimension Thinly-Provisioned Sandbox Either full data set Or subset by Partition and/or Table

41 Multitenant New Features in Cloning Subset by tablespace Metadata-only clone Remote clone (including snapshots) File system-agnostic cloning via dnfs(clonedb = true) SQL Cross PDB Queries New SQL clause to aggregate data across PDBs select ENAME from containers(scott.emp) where CON_ID in (45, 49); New standbys clause (all none) Flashback data archive Temporal SQL Support PRIMARY STANDBY Nologging clause at PDB level Maintains state of PDBs between CDB restarts Standby & Logging Additional Features Compatible with DB In-Memory

42 Key Benefits Benefit Minimize CapEx Minimize OpEx Maximize Agility Easy Capability Enabled More applications per server Manage many as one (reduced patching!) Standardized procedures & service levels Enable self-service provisioning Snapshot cloning for development and testing Portability through pluggability Scalability with RAC To Adopt: Applications run unchanged To Use: Interface is SQL

43

44

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

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Oracle Mul*tenant. The Bea'ng Heart of Database as a Service. Debaditya Cha9erjee Senior Principal Product Manager Oracle Database, Product Management

Oracle Mul*tenant. The Bea'ng Heart of Database as a Service. Debaditya Cha9erjee Senior Principal Product Manager Oracle Database, Product Management Oracle Mul*tenant The Bea'ng Heart of Database as a Service Debaditya Cha9erjee Senior Principal Product Manager Oracle Database, Product Management Safe Harbor Statement The following is intended to outline

More information

Oracle Database 18c and Autonomous Database

Oracle Database 18c and Autonomous Database Oracle Database 18c and Autonomous Database Maria Colgan Oracle Database Product Management March 2018 @SQLMaria Safe Harbor Statement The following is intended to outline our general product direction.

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

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

12.1 Multitenancy in real life

12.1 Multitenancy in real life 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest, 2017-11-08 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation

More information

Moving Databases to Oracle Cloud: Performance Best Practices

Moving Databases to Oracle Cloud: Performance Best Practices Moving Databases to Oracle Cloud: Performance Best Practices Kurt Engeleiter Product Manager Oracle Safe Harbor Statement The following is intended to outline our general product direction. It is intended

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

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

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Kurt Engeleiter Principal Product Manager Safe Harbor Statement The following is intended to outline our general product direction.

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

Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure

Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure Ken Kutzer, Ramin Maozeni Systems Engineering Systems Division September 30, 2014 CON5748 Moscone South 301 Safe Harbor Statement The

More information

Behind the scenes of Oracle MulCtenant

Behind the scenes of Oracle MulCtenant Behind the scenes of Oracle MulCtenant A new architecture for consolida2ng databases and simplifying opera2ons in the cloud Deba ChaFerjee Principal Product Manager, Oracle Database Safe Harbor Statement

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

Oracle Database 12c Release 2 Oracle Database 12c Release 2 New Features (OVERVIEW) Rhoda Sarmiento-Pereira Oracle Support Safe Harbor Statement The following is intended to outline our general product direction. It is intended for

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

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

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

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

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

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

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

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

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

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

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

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

Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager

Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager Hari Srinivasan Consulting Product Manager, Oracle Bala Kuchibhotla Sr. Director Engineering, Oracle Gurushankar Director

More information

Zero Data Loss Recovery Appliance DOAG Konferenz 2014, Nürnberg

Zero Data Loss Recovery Appliance DOAG Konferenz 2014, Nürnberg Zero Data Loss Recovery Appliance Frank Schneede, Sebastian Solbach Systemberater, BU Database, Oracle Deutschland B.V. & Co. KG Safe Harbor Statement The following is intended to outline our general product

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

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

Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management

Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management Fabio Batista Sales Consultant June 25, 2015 Copyright 2015, Oracle and/or its affiliates.

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 Managing Oracle Database 12c with Oracle Enterprise Manager 12c Martin

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

CO Oracle Database 11g: Data Guard Administration

CO Oracle Database 11g: Data Guard Administration CO-52161 Oracle Database 11g: Data Guard Administration Summary Duration 4 Days Audience Database Administrators, Support Engineers and Technical Analysts Level Professional Technology Oracle Database

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

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

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

"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

WLS Neue Optionen braucht das Land

WLS Neue Optionen braucht das Land WLS Neue Optionen braucht das Land Sören Halter Principal Sales Consultant 2016-11-16 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

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

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

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

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 Zero Data Loss Recovery Appliance (ZDLRA)

Oracle Zero Data Loss Recovery Appliance (ZDLRA) Oracle Zero Data Loss Recovery Appliance (ZDLRA) Overview Attila Mester Principal Sales Consultant Data Protection Copyright 2015, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

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

CON8260 -Database as a Service Cookbook Strategies and Tips for Successful Deployment

CON8260 -Database as a Service Cookbook Strategies and Tips for Successful Deployment CON8260 -Database as a Service Cookbook Strategies and Tips for Successful Deployment Ashish Agrawal Consulting Product Manager Adeesh Fulay Senior Principal Product Manager September,2014 Copyright 2014,

More information

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Kai Yu Oracle Solutions Engineering Dell EMC Kai Yu Technical Staff, Dell EMC Database Engineering 25+ years working

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

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

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

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 - Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner @markusdba doag2017 Our company. Trivadis is a market leader in IT consulting, system

More information

Oracle Database 12c at Wellcome Trust Sanger Institute (WTSI)

Oracle Database 12c at Wellcome Trust Sanger Institute (WTSI) Oracle Database 12c at Wellcome Trust Sanger Institute (WTSI) Oracle Open World - 2013 Kalyan Kallepally Principal Database Administrator About Me Working as Principal Database Administrator at Wellcome

More information

DBAs can use Oracle Application Express? Why?

DBAs can use Oracle Application Express? Why? DBAs can use Oracle Application Express? Why? 20. Jubilarna HROUG Konferencija October 15, 2015 Joel R. Kallman Director, Software Development Oracle Application Express, Server Technologies Division Copyright

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

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

Large-Scale Patch Automation for the Cloud-Generation DBAs

Large-Scale Patch Automation for the Cloud-Generation DBAs Large-Scale Patch Automation for the Cloud-Generation DBAs Pankaj Chandiramani Principal Product Manager, Oracle Sean Connolly Software Development Director, Oracle Steven Meredith EM Service Manager,

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

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

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

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

CO Oracle Database 12c: Data Guard Administration

CO Oracle Database 12c: Data Guard Administration CO-79232 Oracle Database 12c: Data Guard Administration Summary Duration 4 Days Audience Database Administrators, Support Engineers and Technical Analysts Level Professional Technology Oracle Database

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

Managing Oracle Database 12c with Oracle Enterprise Manager 12c

Managing Oracle Database 12c with Oracle Enterprise Manager 12c Managing Oracle Database 12c with Oracle Enterprise Manager 12c The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2

Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2 Flashback Database, Backup and Recovery in Oracle Database 12c Release 2 Select profile_details from oracle_community where name = Joerg Sobottka ; ORACLE DB SINCE 1991 IT Strategy OCP DBA (9i-12c) joerg.sobottka@robotron.ch

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

Simplified Lifecycle Management for Oracle Database 18c Multitenant [PRO4380]

Simplified Lifecycle Management for Oracle Database 18c Multitenant [PRO4380] Simplified Lifecycle Management for Oracle Database 18c Multitenant [PRO4380] Oracle Enterprise Manager Saurabh Jain Senior Product Manager Martin Peña Sr. Director, Product Management Harini Srinivasan

More information

Oracle12c Release 1 & 2 New Features for Administrators (5 Days)

Oracle12c Release 1 & 2 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 & 2 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 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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Javaentwicklung in der Oracle Cloud

Javaentwicklung in der Oracle Cloud Javaentwicklung in der Oracle Cloud Sören Halter Principal Sales Consultant 2016-11-17 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

Oracle Database 11g: New Features for Administrators Release 2

Oracle Database 11g: New Features for Administrators Release 2 Oracle University Contact Us: 0845 777 7711 Oracle Database 11g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course gives you the opportunity to learn about and

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

Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help

Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help Presented at Rapid database cloning using SMU and ZFS Storage Appliance How Exalogic tooling can help Jacco H. Landlust Platform Architect Director Oracle Consulting NL, Core Technology December, 2014

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

Oracle Autonomous Database

Oracle Autonomous Database Oracle Autonomous Database Maria Colgan Master Product Manager Oracle Database Development August 2018 @SQLMaria #thinkautonomous Safe Harbor Statement The following is intended to outline our general

More information

Oracle Real Application Clusters (RAC) 12c Release 2 What s Next?

Oracle Real Application Clusters (RAC) 12c Release 2 What s Next? Oracle Real Application Clusters (RAC) 12c Release 2 What s Next? Markus Michalewicz Senior Director of Product Management, Oracle RAC Development Markus.Michalewicz@oracle.com @OracleRACpm http://www.linkedin.com/in/markusmichalewicz

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 Recovery Manager Tips and Tricks for On-Premises and Cloud Databases

Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases CON6677 Marco Calmasini Sr. Principal Product Manager, Oracle Gagan Singh, Sr. Database Architect, Intel Copyright 2017, Oracle

More information

Oracle Maximum Availability Architecture for Oracle Cloud

Oracle Maximum Availability Architecture for Oracle Cloud Oracle Maximum Availability Architecture for Oracle Cloud Best Practices and Techniques Sridhar Ranganathan Sr. Principal Product Manager Oracle Database MAA October 04, 2017 Safe Harbor Statement The

More information

CHAPTER. Planning and Managing Tablespaces

CHAPTER. Planning and Managing Tablespaces CHAPTER 3 Planning and Managing Tablespaces 62 Oracle Database 12c DBA Handbook How a DBA configures the layout of the tablespaces in a database directly affects the performance and manageability of the

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

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

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Oracle Database 12c Preview In-Memory Column Store (V12.1.0.2) Michael Künzner Principal Sales Consultant The following is intended to outline our general product direction. It is intended for information

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 Multitenant: New Features

Oracle Multitenant: New Features Oracle Multitenant: New Features In Oracle Database 18c ORACLE WHITE PAPER MARCH 2018 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

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

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

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

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