Cloud Consolidation with Oracle (RAC) How much is too much?

Size: px
Start display at page:

Download "Cloud Consolidation with Oracle (RAC) How much is too much?"

Transcription

1 1 Copyright 11, Oracle and/or its affiliates All rights reserved Cloud Consolidation with Oracle (RAC) How much is too much? Markus Michalewicz Senior Principal Product Manager Oracle RAC, Oracle America 2 Copyright 11, Oracle and/or its affiliates All rights reserved 1

2 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 3 Copyright 11, Oracle and/or its affiliates All rights reserved Agenda Consolidation on Database Clouds Registered, Starting, Running Memory Management CPU(_COUNT) Management Database Resource Management Oracle RAC based Consolidation Per Server Limits remain Real Time (RT) Processes Registered, Starting, Running Cluster Limits Additional Considerations Summary 4 Copyright 11, Oracle and/or its affiliates All rights reserved 2

3 Consolidation on Database Clouds Business Drivers Lower: CapEx and OpEx Servers, Storage S/W licenses OpEx Maintenance Management Reduce IT Costs Reduce Complexity Reduce: Configurations Services Standardize: Versions Enable: Resource Elasticity Rapid Provisioning Fast Deployment Increase Agility Increase Quality of Service Enhance: IT service time Availability Security 5 Copyright 11, Oracle and/or its affiliates All rights reserved Database Cloud Architectures Common building blocks are shared server and storage pools Infrastructure Cloud Database Cloud Database Cloud DW CRM ERP DW ERP CRM DW ERP CRM Hypervisor Hypervisor Server Platform Database 6 Copyright 11, Oracle and/or its affiliates All rights reserved 3

4 11/15/11 Registered, Starting, Running 7 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle (RAC) Registered, Starting, Running makes a difference When talking about limits in general, three stages need to be considered: Registered Starting Registered: n instances are defined to run on a machine (potentially) Running Typically, limits are discussed based on: Running at the same time When using cluster based consolidation, starting databases need to be considered in addition Starting: Registered databases and instances start Default is starting at the same time Running: Registered databases and instances are running (concurrently) Copyright 11, Oracle and/or its affiliates All rights reserved 4

5 11/15/11 Oracle (RAC) Registered vs Running Registered databases and instances could Registered: n instances potentially start or run at the same time Oracle s Quality of Service Management or scripts can be used to model policies to run certain databases only at certain times; eg geographic region over time Assume the cluster is PST based: are defined to run on a machine (potentially) Define and Enable vs Classify and Measure Evaluate and Report Analyze and Recommend EMEA based s run 10:00pm am PST Implement and Control APAC based s run 6:00pm 3am PST USA based s run :00am 6pm PST 9 Running: Registered databases and instances are running (concurrently) Copyright 11, Oracle and/or its affiliates All rights reserved 10 Copyright 11, Oracle and/or its affiliates All rights reserved 5

6 Starting block: One Database instance per server Database Cloud Simplest of all consolidation cases: One database Instance per Server Multiple databases may run in the cluster DW ERP CRM Database 11 Copyright 11, Oracle and/or its affiliates All rights reserved Starting block: One Database instance per server Parameters to consider: Memory CPU I/O Processes Network 12 Copyright 11, Oracle and/or its affiliates All rights reserved 6

7 One instance per server as the basis The Oracle database is designed for this case: The base assumption is: one instance per server Instance parameters are based on this assumption Main resources used: Memory CPU I/O Resources regulated by default : Memory SGA / PGA Targets CPU 13 Copyright 11, Oracle and/or its affiliates All rights reserved Recommendation 1a: Manage Memory carefully (and dynamically) Avoid memory starvation and swapping as it has negative impact on the system Do not oversubscribe system resources eg: Shared Memory identifiers and segments Hugepages See M note for details Especially: ER for use_large_pages Set memory targets carefully rule of thumb: (sga_target + pga_aggregated_target) <= 0% of physically available memory (- fixed allocation) If running DW workload, weigh PGA target (eg 3x) Memory targets do not consider third party applications 0% % 14 Copyright 11, Oracle and/or its affiliates All rights reserved 7

8 Recommendation 1b: Manage Memory carefully (and dynamically) Set memory targets carefully rule of thumb: (sga_target + pga_aggregated_target) <= 0% of physically available memory (- fixed allocation) If running DW workload, weigh PGA target (eg 3x) Memory targets do not consider third party applications Fixed allocation à eg Memory used by Using multiple instances per server example: (sga_target A + pga_aggregated_target A ) + (sga_target B + pga_aggregated_target B ) <= 0% of physically available memory (- fixed all) B A 0% % 15 Copyright 11, Oracle and/or its affiliates All rights reserved CPU_COUNT determines further settings CPU use per (instance) can be regulated With Oracle Database 11g Rel 2 use CPU_COUNT and / or Instance Caging CPU_COUNT considerations: Used in pfile / spfile Instance specific initialization parameter If more than one instance is used, the parameter defaults to values suitable for one instance per server CPU_COUNT counts CPUs as reported by! This may include threads ( reports CPUs ) CPU_COUNT is the basis for further resource allocation and performance consideration f x (CPU_COUNT) Data Structures Concurrency Parallelism Processes Memory Allocation Load Calculation Copyright 11, Oracle and/or its affiliates All rights reserved

9 Recommendation 2: Use CPU_COUNT to cage instances CPU usage should be regulated The scheduler schedules CPU as requested by each individual instance The scheduler does not know about the priority of the various instances on the server Use CPU_COUNT or ideally Instance Caging Instance Caging is configured in just 2 steps: 1 Set cpu_count parameter Max number of CPUs the instance can use at any time 2 Set resource_manager_plan parameter Enables CPU Resource Manager Eg out-of-box plan DEFAULT_PLAN A B 17 Copyright 11, Oracle and/or its affiliates All rights reserved Instance Caging 1 Copyright 11, Oracle and/or its affiliates All rights reserved 9

10 Instance Caging: Partitioning Approach CPUs 32 Provides maximum isolation 2 For performance-critical databases D 24 If one database instance is idle, its CPU allocation is unused A B C 12 4 Instance D: 4 CPUs Instance C: 4 CPUs Instance B: 4 CPUs Instance A: 4 CPUs 0 19 Copyright 11, Oracle and/or its affiliates All rights reserved Instance Caging: Over-Provisioning Approach Best used for non-critical databases that are typically well-behaved CPUs 32 Contention for CPU if database instances are sufficiently loaded Typically not enough contention to destabilize or instances Best approach if the goal is fully utilized CPUs A B C D Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs Instance A: 4 CPUs 0 Copyright 11, Oracle and/or its affiliates All rights reserved 10

11 Instance Caging under the covers If cpu_count is set to 4 on a CPU server All foreground processes make progress But only 4 foregrounds are running at any time 32 Partitioning Approach 32 Over-Provisioning Approach Most backgrounds are not managed Critical and use very little CPU MMON, Job Scheduler slaves are managed No CPU affinity Instance D: CPUs All CPUs may be used CPU utilization averaged across all CPUs 25% Instance D: 4 CPUs Instance C: 6 CPUs Instance C: 4 CPUs More information: Instance B: 4 CPUs Instance B: 4 CPUs 4 4 Instance A: 4 CPUs Instance A: 4 CPUs Copyright 11, Oracle and/or its affiliates All rights reserved Over-Provisioning Approach It s still hardware that s the limit Best used for non-critical databases that are typically well-behaved Contention for CPU if database instances are sufficiently loaded CPU UBl Average Typically not enough contention to destabilize or instances If assumptions listed are met If the load is significant and of longer duration, system stability can get impacted 0 t1 t2 t3 t4 t5 t6 t7 t t9 t10 t11 t12 32 CPUs 2 A B C D Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs Instance A: 4 CPUs 22 Copyright 11, Oracle and/or its affiliates All rights reserved 11

12 How much over-provisioning is OK? 4 As CPU_COUNT does not consider the quality of a CPU an absolute maximum is hard to determine / depends on the system CPUs 32 In general SUM (CPU_COUNT) of all CPU_COUNTs set for all instances on one server should not exceed: 3x number of physical CPUs Eg: for a core machines à 3x <= 4 A B C D Instance D: CPUs Instance C: 6 CPUs 4 Instance B: 4 CPUs Instance A: 4 CPUs 0 23 Copyright 11, Oracle and/or its affiliates All rights reserved Database Resource Management 24 Copyright 11, Oracle and/or its affiliates All rights reserved 12

13 Recommendation 3: Use Resource Manager for runaway queries 3 steps to use Resource Manager: 1 Group sessions with similar performance objectives into Consumer Groups 2 Allocate resources to consumer groups using Resource Plans 3 Enable Resource Plan 25 Copyright 11, Oracle and/or its affiliates All rights reserved Summary 1 Set memory targets carefully: 4 (sga_target A + pga_aggregated_target A ) + (sga_target B + pga_aggregated_target B ) <= 0% of physically available memory (- fixed all) 2 Use CPU_COUNT or ideally Instance Caging SUM (CPU_COUNT) of all CPU_COUNTs set for all instances on one server should not exceed: 3x number of physical CPUs B A 0% % Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs 4 Instance A: 4 CPUs 0 26 Copyright 11, Oracle and/or its affiliates All rights reserved 13

14 Oracle RAC based Consolidation 27 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle RAC based Consolidation Per server limits remain in principle Most per server limits remain unchanged compared to a SI Oracle RAC introduces a few more processes to consider Typically, per server limits are reached before cluster limits Oracle RAC s introduce LMS Real Time (RT) processes per instance LMS RT processes need to be considered in particular Per Server Limits A1 B1 C1 Clusterware A2 B2 C2 Clusterware Cluster Limits 2 Copyright 11, Oracle and/or its affiliates All rights reserved 14

15 Real Time (RT) Processes 29 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle RAC based Consolidation Considerations for Real Time (RT) Processes in general A Real Time process can only run on one CPU (core) at a time The usage the CPU is typically short The general rule of thumb is: The aggregated number of RT processes per server should not exceed the number of cores per server One Oracle RAC instance has typically at least one RT process (LMS) per default An Oracle ASM instance has one RT process Oracle Clusterware uses various RT processes A1 B1 C1 Clusterware A2 B2 C2 Clusterware 30 Copyright 11, Oracle and/or its affiliates All rights reserved 15

16 Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs Instance A: 4 CPUs 11/15/11 Oracle RAC based Consolidation Background for LMS Real Time (RT) Process recommendation The number of LMS RT processes per instance is determined by a function on CPU_COUNT In order to guarantee optimized performance and reliability, the general rule of thumb for RAC is: The aggregated number of LMS RT processes per server should not exceed [cores per server]-1 See M note: for details This leaves one CPU free for additional RT processes to be assigned as needed, as LMS RT can stay on a CPU for a moment A1 B1 C1 Clusterware A2 B2 C2 Clusterware 31 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle RAC based Consolidation Deviating from the Real Time (RT) Process recommendation When deviating from the RT rule, per server limits as discussed for the Single Instance still apply Changing from RT to time sharing for LMS processes does not have an impact on data consistency, but might affect performance under high load For Oracle RAC One Node the LMS process is mostly ignorable and can be set to time sharing without impact Per Server Limits A1 B1 C1 0% A2 B2 C2 Clusterware % 4 32 Copyright 11, Oracle and/or its affiliates All rights reserved

17 Oracle RAC based Consolidation Automatic adjustment of LMS process priority in 113 With 113 the number of LMS RT processes are monitored and adjusted according to the number of CPUs on the node periodically The goal is to keep RT LMSs <= # CPUs (physical CPUs / cores are considered) This excludes any ASM instance running on the system as well as any pre-113 database instance This mechanism only monitors 113 or later instances Per Server Limits 4 CPUs 4 CPUs A1 B1 C1 D1 F1 E1 A2 B2 C2 D2 4 4 F2 E2 33 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle RAC based Consolidation Recommendation 4: Over-provision only based on CPU_COUNT Do not over-provision the number of LMS RT processes on one server Limit the number of RT LMS when over-provisioning is required Use CPU_COUNT first Directly reduce the number of LMS RT processes (gcs_server_processes) Downgrade additional LMS RT processes to time share (TS) Per Server Limits In 113 and later, the RT to CPU rule will be enforced by automatically downgrading subsequently started LMS RT processes to TS A1 B1 C1 D1 F1 E1 A2 B2 C2 D2 F2 E Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs Instance A: 4 CPUs 34 Copyright 11, Oracle and/or its affiliates All rights reserved 17

18 11/15/11 Registered, Starting, Running 35 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle (RAC) Registered vs Running Registered databases and instances could Registered: n instances potentially start or run at the same time Oracle s Quality of Service Management or scripts can be used to model policies to run certain databases only at certain times; eg geographic region over time Assume the cluster is PST based: are defined to run on a machine (potentially) Define and Enable vs Classify and Measure Evaluate and Report Analyze and Recommend EMEA based s run 10:00pm am PST Implement and Control APAC based s run 6:00pm 3am PST USA based s run :00am 6pm PST 36 Running: Registered databases and instances are running (concurrently) Copyright 11, Oracle and/or its affiliates All rights reserved 1

19 Leverage Oracle RAC for Database Clouds Generic Quality of Service Management (113) Support for Memory Guard Protects Oracle RAC EE policy-managed databases from memory stress outages Support for Measure-Only Mode Define Performance Classes and Policies Evaluate performance of test consolidations Monitor runtime health of consolidated deployments Define and Enable Evaluate and Report Classify and Measure Analyze and Recommend Implement and Control 37 Copyright 11, Oracle and/or its affiliates All rights reserved Oracle RAC based Consolidation Cluster Limits Starting s is the main concern In most cases, per server limits will be reached before cluster limits are reached Cluster limits apply to: Registered resources (databases) Starting databases in the cluster reason: Starting databases register with the cluster for fencing purposes Currently and for example, 100 starting Oracle RAC databases on a 4 node cluster are supported Number assumes each RAC database uses an instance on each node Starting: Registered databases and instances start Default is starting at the same time A1 B1 D1 C1 Clusterware A2 B2 C2 D2 Clusterware Cluster Limits 3 Copyright 11, Oracle and/or its affiliates All rights reserved 19

20 Additional Consideration 39 Copyright 11, Oracle and/or its affiliates All rights reserved (in general) Recommendation 5: Consider indirectly managed resources Quite some resources used by the Oracle Database are allocated as a function of the CPU_COUNT parameter as discussed; eg: Parallelism (PQ operations) Processes Load Calculation The recommendations given should tackle some of those additional resources Processes and PQ operations need to be considered separately and in addition f x (CPU_COUNT) Data Structures Concurrency Parallelism Processes Memory Allocation Load Calculation 0% % 40 Copyright 11, Oracle and/or its affiliates All rights reserved

21 The Benefits of Standardization Easier deployment and better predictability Standardization of software and hardware simplifies planning Standardized hardware means a predictable behavior should demand increase and additional hardware needs to be added (horizontal scaling approach) Nodes Using application profiling based on current system(s) and performance baselines allows for a predictable deployment of new applications on the same system using existing profiles New Application A Small OLTP First profile Medium OLTP Large OLTP Then deploy 41 Copyright 11, Oracle and/or its affiliates All rights reserved Summary 42 Copyright 11, Oracle and/or its affiliates All rights reserved 21

22 F1 E1 F2 E2 Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs Instance A: 4 CPUs 11/15/11 (Oracle RAC) Summary + 0% % + CPUs A B C D Instance D: CPUs Instance C: 6 CPUs Instance B: 4 CPUs Instance A: 4 CPUs f x (CPU_COUNT) + Data Structures Concurrency Parallelism + = Processes Per Server Limits Memory Allocation Load Calculation 0% A1 B1 C1 D1 A2 B2 C2 D % 43 Copyright 11, Oracle and/or its affiliates All rights reserved Q&A 44 Copyright 11, Oracle and/or its affiliates All rights reserved 22

23 45 Copyright 11, Oracle and/or its affiliates All rights reserved 46 Copyright 11, Oracle and/or its affiliates All rights reserved 23

Cloud Konsolidierung mit Oracle (RAC) Wie viel ist zu viel?

Cloud Konsolidierung mit Oracle (RAC) Wie viel ist zu viel? Cloud Konsolidierung mit Oracle (RAC) Wie viel ist zu viel? Markus Michalewicz Oracle Corporation Oracle HQ, Redwood Shores, CA, USA Key words: cloud, consolidation, Oracle RAC, database, limits Introduction

More information

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

Copyright 2011, Oracle and/or its affiliates. All rights reserved. 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

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

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

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition Understanding (12.1.0.2) Internals: The Cache Fusion Edition Subtitle Markus Michalewicz Director of Product Management Oracle Real Application Clusters (RAC) November 19th, 2014 @OracleRACpm http://www.linkedin.com/in/markusmichalewicz

More information

Database Consolidation onto Private Cloud. Piotr Kołodziej, Oracle Polska

Database Consolidation onto Private Cloud. Piotr Kołodziej, Oracle Polska Database Consolidation onto Private Cloud Piotr Kołodziej, Oracle Polska WHAT IS CLOUD COMPUTING? NIST Definition of Cloud Computing v15 Cloud computing is a model for enabling convenient,

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

Private Cloud Database Consolidation Alessandro Bracchini Sales Consultant Oracle Italia

Private Cloud Database Consolidation Alessandro Bracchini Sales Consultant Oracle Italia Private Cloud Database Consolidation Alessandro Bracchini Sales Consultant Oracle Italia Private Database Cloud Business Drivers Faster performance Resource management Higher availability Tighter security

More information

Private Cloud Database Consolidation Name, Title

Private Cloud Database Consolidation Name, Title Private Cloud Database Consolidation Name, Title Agenda Cloud Introduction Business Drivers Cloud Architectures Enabling Technologies Service Level Expectations Customer Case Studies Conclusions

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

Technicalities of Living in the JD Edwards Cloud Cloud Options and Strategies

Technicalities of Living in the JD Edwards Cloud Cloud Options and Strategies Technicalities of Living in the JD Edwards Cloud Cloud Options and Strategies Clayton Seeley Product Manager JD Edwards Development Copyright 2015, Oracle and/or its affiliates. All rights reserved. Safe

More information

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. The following is intended to outline our general product direction. It is intended for information

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 Real Application Clusters One Node

Oracle Real Application Clusters One Node Oracle Real Application Clusters One Node Better Virtualization for Databases Bob Thome, Oracle Grid Development Agenda Overview Comparison with VMs and other failover solutions Pricing

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

What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud

What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud Santanu Datta Vice President Database Technologies Alex Keh Senior Principal Product Manager Database Technologies Oracle Confidential

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 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 Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata combines the best database with the best cloud platform. Exadata is the culmination of more

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

Workload Management for an Operational Data Warehouse Oracle Database Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing

Workload Management for an Operational Data Warehouse Oracle Database Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing Workload Management for an Operational Data Warehouse Oracle Database 11.2.0.2 Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing Agenda What is a concurrent environment? Planning for workload

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

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 Real Application Clusters (RAC) Your way to the Cloud

Oracle Real Application Clusters (RAC) Your way to the Cloud Oracle Real Application Clusters (RAC) Your way to the Cloud Angelo Pruscino Senior Vice President Oracle RAC Development November 18, 2014 Safe Harbor Statement The following is intended to outline our

More information

Oracle Real Application Clusters One Node

Oracle Real Application Clusters One Node Oracle Real Application Clusters One Node Technical Overview ORACLE WHITE PAPER MARCH 2017 0 ORACLE DATABASE 12C REAL APPLICATION CLUSTERS ONE NODE TECHNICAL OVERVIEW Table of Contents Executive Overview

More information

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Presented at What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Jacco H. Landlust Platform Architect Director Oracle Consulting

More information

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in Oracle Enterprise Manager 12c Sybase ASE Database Plug-in May 2015 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only,

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

Database Consolidation on Oracle SuperCluster O R A C L E W H I T E P A P E R J U L Y

Database Consolidation on Oracle SuperCluster O R A C L E W H I T E P A P E R J U L Y Database Consolidation on Oracle SuperCluster O R A C L E W H I T E P A P E R J U L Y 2 0 1 5 Table of Contents Introduction 4 Overview of Database Consolidation Options 5 Database Server Consolidation

More information

Security Compliance and Data Governance: Dual problems, single solution CON8015

Security Compliance and Data Governance: Dual problems, single solution CON8015 Security Compliance and Data Governance: Dual problems, single solution CON8015 David Wolf Director of Product Management Oracle Development, Enterprise Manager Steve Ries Senior Systems Architect Technology

More information

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics How to Troubleshoot Databases and Exadata Using Oracle Log Analytics Nima Haddadkaveh Director, Product Management Oracle Management Cloud October, 2018 Copyright 2018, Oracle and/or its affiliates. All

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

Power your cloud infrastructure with Oracle VM and Cisco!

Power your cloud infrastructure with Oracle VM and Cisco! Power your cloud infrastructure with Oracle VM and Cisco! John Priest Director PM Oracle VM October 26/27, 2015 Safe Harbor Statement The following is intended to outline our general product direction.

More information

2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE

2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE Co-Host Host 2-4 April 2019 Taets Art and Event Park, Amsterdam CLICK TO KNOW MORE Oracle Cloud Computing Strategy Han Wammes Public Sector Market Development Manager 1 Copyright 2012, Oracle and/or its

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

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in Oracle Enterprise Manager 12c IBM DB2 Database Plug-in May 2015 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

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

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

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Beyond SQL Tuning: Insider's Guide to Maximizing SQL Performance Monday, Oct 22 10:30 a.m. - 11:15 a.m. Marriott Marquis (Golden Gate Level) - Golden Gate A Ashish Agrawal Group Product Manager Oracle

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 ! 2 Oracle VM Introduction Adam Hawley, Senior Director Virtualization, Oracle January 15, 2013 Safe Harbor Statement The following is intended to outline our general product direction. It is intended

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

Consolidate with Oracle Exadata

Consolidate with Oracle Exadata Consolidate with Oracle Exadata Manage Resources and Availability - CON7770 Sue K. Lee, Director of Development René Kundersma, Consulting Member of Tech. Staff Oracle Server Technologies Oct 1, 2014 Safe

More information

Oracle Machine Learning Notebook

Oracle Machine Learning Notebook Oracle Machine Learning Notebook Included in Autonomous Data Warehouse Cloud Charlie Berger, MS Engineering, MBA Sr. Director Product Management, Machine Learning, AI and Cognitive Analytics charlie.berger@oracle.com

More information

Quality of Service Management

Quality of Service Management 1 Oracle Quality of Service Management Meeting SLAs in a Grid Environment Mark V. Scardina Director, Product Management Quality of Service Management Aris Prassinos Chief Engineer

More information

Oracle Database 18c: Quality of Service Management

Oracle Database 18c: Quality of Service Management Oracle Database 18c: Quality of Service Management Monitoring and Managing Oracle RAC Database Performance ORACLE WHITE PAPER FEBRUARY 2018 Table of Contents Introduction 2 Datacenter Runtime Management

More information

NOSQL DATABASE CLOUD SERVICE. Flexible Data Models. Zero Administration. Automatic Scaling.

NOSQL DATABASE CLOUD SERVICE. Flexible Data Models. Zero Administration. Automatic Scaling. NOSQL DATABASE CLOUD SERVICE Flexible Data Models. Zero Administration. Automatic Scaling. Application development with no hassle... Oracle NoSQL Cloud Service is a fully managed NoSQL database cloud service

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

More information

Oracle Secure Backup 12.2 What s New. Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Oracle Secure Backup 12.2 What s New. Copyright 2018, Oracle and/or its affiliates. All rights reserved. Oracle Secure Backup 12.2 What s New 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

More information

CONTAINER CLOUD SERVICE. Managing Containers Easily on Oracle Public Cloud

CONTAINER CLOUD SERVICE. Managing Containers Easily on Oracle Public Cloud CONTAINER CLOUD SERVICE Managing on Why Container Service? The cloud application development and deployment paradigm is changing. Docker containers make your operations teams and development teams more

More information

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Prabhaker Gongloor (GP) Product Management Director, Database Manageability, Oracle

More information

Copyright 2017 Oracle and/or its affiliates. All rights reserved.

Copyright 2017 Oracle and/or its affiliates. All rights reserved. Copyright 2017 Oracle and/or its affiliates. All rights reserved. On Cloud 9 with Speed and Stability A Journey to Cloud Transformation Ken E. Molter, Director IT, Ryder Bill Wimsatt, Sr. Manager, Enterprise

More information

Oracle Database. Quality of Service Management User's Guide 11g Release 2 (11.2) E

Oracle Database. Quality of Service Management User's Guide 11g Release 2 (11.2) E Oracle Database Quality of Service Management User's Guide 11g Release 2 (11.2) E24611-02 May 2012 Oracle Database Quality of Service Management User's Guide 11g Release 2 (11.2) E24611-02 Copyright 2010,

More information

Oracle Grid Infrastructure Cluster Domains O R A C L E W H I T E P A P E R F E B R U A R Y

Oracle Grid Infrastructure Cluster Domains O R A C L E W H I T E P A P E R F E B R U A R Y Oracle Grid Infrastructure Cluster Domains O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 8 Table of Contents Introduction 1 Clustering with Oracle Clusterware 3 Oracle Grid Infrastructure Architectures

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

Oracle and.net Introduction and What s New. Copyright 2017, Oracle and/or its affiliates. All rights reserved.

Oracle and.net Introduction and What s New. Copyright 2017, Oracle and/or its affiliates. All rights reserved. Oracle and.net Introduction and What s New Alex Keh Senior Principal Product Manager Oracle Christian Shay Senior Principal Product Manager Oracle Program Agenda 1 2 3 4 Getting Started Oracle Database

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

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

OpenWorld 2018 SQL Tuning Tips for Cloud Administrators

OpenWorld 2018 SQL Tuning Tips for Cloud Administrators OpenWorld 2018 SQL Tuning Tips for Cloud Administrators GP (Prabhaker Gongloor) Senior Director of Product Management Bjorn Bolltoft Dr. Khaled Yagoub Systems and DB Manageability Development Oracle Corporation

More information

Oracle Real Application Clusters (RAC) 12c Best Practices

Oracle Real Application Clusters (RAC) 12c Best Practices Oracle Real Application Clusters (RAC) 12c Best Practices Markus Michalewicz Oracle Redwood Shores, CA, USA Keywords: Oracle RAC 12c, Grid Infrastructure, Best Practices Introduction It is no secret that

More information

Oracle Exadata Statement of Direction NOVEMBER 2017

Oracle Exadata Statement of Direction NOVEMBER 2017 Oracle Exadata Statement of Direction NOVEMBER 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Reinventing Upgrades, Platform Changes, RAC and More with Database Replay

Reinventing Upgrades, Platform Changes, RAC and More with Database Replay Reinventing Upgrades, Platform Changes, RAC and More with Database Replay Prabhaker Gongloor Product Manager Real Application Testing and Diagnosability Outline Database Replay Motivation Database Replay

More information

Can "scale" cloud applications "on the edge" by adding server instances. (So far, haven't considered scaling the interior of the cloud).

Can scale cloud applications on the edge by adding server instances. (So far, haven't considered scaling the interior of the cloud). Recall: where we are Wednesday, February 17, 2010 11:12 AM Recall: where we are Can "scale" cloud applications "on the edge" by adding server instances. (So far, haven't considered scaling the interior

More information

IaaS Vendor Comparison

IaaS Vendor Comparison IaaS Vendor Comparison Analysis of competitor products Tobias Deml Senior Systemberater BU Cloud & Core Technologies February 01, 2018 2 Tobias Deml Senior Systemberater BU Cloud & Core Technologies Topics

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

Solaris Engineered Systems

Solaris Engineered Systems Solaris Engineered Systems SPARC SuperCluster Introduction Andy Harrison andy.harrison@oracle.com Engineered Systems, Revenue Product Engineering The following is intended to outline

More information

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

Real Time Summarization. Copyright 2014, Oracle and/or its affiliates. All rights reserved. Real Time Summarization 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.

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

Oracle Real Application Clusters (RAC) on Oracle Database 18c ORACLE WHITE PAPER FEBRUARY 2018

Oracle Real Application Clusters (RAC) on Oracle Database 18c ORACLE WHITE PAPER FEBRUARY 2018 Oracle Real Application Clusters (RAC) on Oracle Database 18c ORACLE WHITE PAPER FEBRUARY 2018 Executive Overview Oracle Real Application Clusters - Overview 3 Oracle Clusterware 4 Oracle Automatic Storage

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

Making the Most of the Splunk Scheduler

Making the Most of the Splunk Scheduler Making the Most of the Splunk Scheduler Paul J. Lucas Principal Software Engineer, Splunk September 25 28, 2017 Washington, DC Forward-Looking Statements During the course of this presentation, we may

More information

Oracle Grid Infrastructure 12c Release 2 Cluster Domains O R A C L E W H I T E P A P E R N O V E M B E R

Oracle Grid Infrastructure 12c Release 2 Cluster Domains O R A C L E W H I T E P A P E R N O V E M B E R Oracle Grid Infrastructure 12c Release 2 Cluster Domains O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 7 Table of Contents Introduction 2 Clustering with Oracle Clusterware 12c Release 2 3 Oracle

More information

Connectivity FastConnect Level 200. Jamal Arif November 2018

Connectivity FastConnect Level 200. Jamal Arif November 2018 Connectivity FastConnect Level 200 Jamal Arif November 2018 Copyright Copyright 2018, Oracle 2018, and/or Oracle its and/or affiliates. its affiliates. All rights reserved. All rights reserved. 1 Safe

More information

The Oracle Database Appliance I/O and Performance Architecture

The Oracle Database Appliance I/O and Performance Architecture Simple Reliable Affordable The Oracle Database Appliance I/O and Performance Architecture Tammy Bednar, Sr. Principal Product Manager, ODA 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

More information

Oracle Exadata: Strategy and Roadmap

Oracle Exadata: Strategy and Roadmap Oracle Exadata: Strategy and Roadmap - New Technologies, Cloud, and On-Premises Juan Loaiza Senior Vice President, Database Systems Technologies, Oracle Safe Harbor Statement The following is intended

More information

WebLogic & Oracle RAC Active GridLink for RAC

WebLogic & Oracle RAC Active GridLink for RAC OLE PRODUCT LOGO WebLogic & Oracle Active GridLink for Roger Freixa Senior Principal Product Manager WebLogic Server, Coherence and Java Infrastructure 1 Copyright 2011, Oracle and/or its affiliates. All

More information

Massive Scalability With InterSystems IRIS Data Platform

Massive Scalability With InterSystems IRIS Data Platform Massive Scalability With InterSystems IRIS Data Platform Introduction Faced with the enormous and ever-growing amounts of data being generated in the world today, software architects need to pay special

More information

Mission-Critical Databases in the Cloud. Oracle RAC in Microsoft Azure Enabled by FlashGrid Software.

Mission-Critical Databases in the Cloud. Oracle RAC in Microsoft Azure Enabled by FlashGrid Software. Mission-Critical Databases in the Cloud. Oracle RAC in Microsoft Azure Enabled by FlashGrid Software. White Paper rev. 2017-10-16 2017 FlashGrid Inc. 1 www.flashgrid.io Abstract Ensuring high availability

More information

Reference Architectures for designing and deploying Microsoft SQL Server Databases in Active System800 Platform

Reference Architectures for designing and deploying Microsoft SQL Server Databases in Active System800 Platform Reference Architectures for designing and deploying Microsoft SQL Server Databases in Active System800 Platform Discuss database workload classification for designing and deploying SQL server databases

More information

Using Automatic Workload Repository for Database Tuning: Tips for Expert DBAs. Kurt Engeleiter Product Manager

Using Automatic Workload Repository for Database Tuning: Tips for Expert DBAs. Kurt Engeleiter Product Manager Using Automatic Workload Repository for Database Tuning: Tips for Expert DBAs Kurt Engeleiter Product Manager The following is intended to outline our general product direction. It is intended for information

More information

Building Highly Available and Scalable Real- Time Services with MySQL Cluster

Building Highly Available and Scalable Real- Time Services with MySQL Cluster Building Highly Available and Scalable Real- Time Services with MySQL Cluster MySQL Sales Consulting Director Philip Antoniades April, 3rd, 2012 1 Copyright 2012, Oracle and/or its affiliates. All rights

More information

Exadata Database Machine Resource Management teile und herrsche!

Exadata Database Machine Resource Management teile und herrsche! Exadata Database Machine Resource Management teile und herrsche! DOAG Conference 2011 Konrad Häfeli Senior Technology Manager Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

End to End SLA for Enterprise Multi-Tenant Applications

End to End SLA for Enterprise Multi-Tenant Applications End to End SLA for Enterprise Multi-Tenant Applications Girish Moodalbail, Principal Engineer, Oracle Inc. Venugopal Iyer, Principal Engineer, Oracle Inc. The following is intended to outline our general

More information

<Insert Picture Here> Scale your PHP Application to Tens of Thousands of Connections

<Insert Picture Here> Scale your PHP Application to Tens of Thousands of Connections Scale your PHP Application to Tens of Thousands of Connections Srinath Krishnaswamy Director, Data Access Development, Oracle Corp. Luxi Chidambaran Consulting Member of Technical

More information

MySQL CLOUD SERVICE. Propel Innovation and Time-to-Market

MySQL CLOUD SERVICE. Propel Innovation and Time-to-Market MySQL CLOUD SERVICE Propel Innovation and Time-to-Market The #1 open source database in Oracle. Looking to drive digital transformation initiatives and deliver new modern applications? Oracle MySQL Service

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

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

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration.

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration. Volume: 71 Questions Question No : 1 Which two statements are true about migrating your database to Exadata? A. Because Exadata uses InfiniBand, in order to migrate your database to Exadata, you must have

More information

Database Consolidation onto Private Clouds

Database Consolidation onto Private Clouds An Oracle White Paper February 2011 Database Consolidation onto Private Clouds Executive Overview... 3 Cloud Overview and Considerations... 4 Business Drivers for Consolidating Databases onto a Private

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. Re-Engineering Your Database Design with Oracle SQL Developer Data Modeler Swarnapriya Shridhar Curriculum IDC Operations Manager 2

More information

Help Us Help You - TFA Collector and the Support Tools Bundle

Help Us Help You - TFA Collector and the Support Tools Bundle Help Us Help You - TFA Collector and the Support Tools Bundle Bryan Vongray Senior Principal Technical Support Engineer Oracle Support October 24, 2018 Copyright 2018, Oracle and/or its affiliates. All

More information

Oracle Linux, Virtualization & OEM12 Discussion Sahil Mahajan / Sundeep Dhall

Oracle Linux, Virtualization & OEM12 Discussion Sahil Mahajan / Sundeep Dhall Oracle Linux, Virtualization & OEM12 Discussion Sahil Mahajan / Sundeep Dhall 1 Copyright 2011, 2013, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification

More information

Application Container Cloud

Application Container Cloud APPLICATION CONTAINER CLOUD Application Container Cloud with Java SE and Node The Best Java SE and Node Cloud. Get the choice of either Oracle Java SE Advanced, including Flight Recorder for production

More information

Oracle Database In-Memory By Example

Oracle Database In-Memory By Example Oracle Database In-Memory By Example Andy Rivenes Senior Principal Product Manager DOAG 2015 November 18, 2015 Safe Harbor Statement The following is intended to outline our general product direction.

More information

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 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 into any contract. It is not a commitment

More information

Enterprise Manager Cloud Control 12c DBaaS Private Cloud on Exadata Database Machine 1-1

Enterprise Manager Cloud Control 12c DBaaS Private Cloud on Exadata Database Machine 1-1 1-1 A Cloud Called Database-as-a-Service Cloud Based Database-as-a-Service (DBaaS) is a cloud based service that provides end users with the capability to request a database or schema from a catalog of

More information

An Insider s Guide to Oracle Autonomous Transaction Processing

An Insider s Guide to Oracle Autonomous Transaction Processing An Insider s Guide to Oracle Autonomous Transaction Processing Maria Colgan Master Product Manager Troy Anthony Senior Director, Product Management #thinkautonomous Autonomous Database Traditionally each

More information

What s New for Oracle Database 11gR2 on Windows?

What s New for Oracle Database 11gR2 on Windows? 1 What s New for Oracle Database 11gR2 on Windows? Santanu Datta ` Alex Keh Dennis Ruane Sr. Director Principal Product Manager Senior Database Software Engineer Server Technologies

More information

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

Oracle 1Z0-054 Exam Questions and Answers (PDF) Oracle 1Z0-054 Exam Questions 1Z0-054 BrainDumps Oracle 1Z0-054 Dumps with Valid 1Z0-054 Exam Questions PDF [2018] The Oracle 1Z0-054 Oracle Database 11g: Performance Tuning exam is an ultimate source for professionals to retain their credentials dynamic.

More information

White Paper. Major Performance Tuning Considerations for Weblogic Server

White Paper. Major Performance Tuning Considerations for Weblogic Server White Paper Major Performance Tuning Considerations for Weblogic Server Table of Contents Introduction and Background Information... 2 Understanding the Performance Objectives... 3 Measuring your Performance

More information