Running E-Business Suite on Exadata: Technical Details. April 25, 2017

Size: px
Start display at page:

Download "Running E-Business Suite on Exadata: Technical Details. April 25, 2017"

Transcription

1 Running E-Business Suite on Exadata: Technical Details April 25, 2017

2 Gary Gordhamer Principal Technologist ERP Infrastructure Power & Water Technology GE Power & Water 25 years of IT experience 24 years with Oracle (6.x up to 12c) Worked in many different industries including healthcare, manufacturing, utilities, banking, and linkedin.com/in/ggordhamer/ oraontap.blogspot.com Note: The views in this presentation are my own and do represent the views of the company I work for. Oracle and NLS, #C17LV Session 333 April 25,

3 Topics 1. What is Exadata 2. Networking 3. OS Configuration 4. Cluster Settings 5. Storage settings 6. DB Settings 7. EBS application items 8. Maintain the Exadata Presentation Title April 25,

4 Notes! Oracle has lots of technical notes, you need to follow them! But which ones? My general order of importance: 1. Start with EBS on Exadata notes 2. Then Exadata notes (ignoring most DB specific items) 3. Then EBS notes The EBS on Exadata notes supersede any other notes! List at end of presentation to start with Presentation Title April 25,

5 1. What is Exadata? Hyper converged Infrastructure Compute (DB NODES) Storage (Storage NODES) Network (10G Ethernet + IB) OS + Cluster Management tools (ExaCheck, ExaPatch, etc ) Presentation Title April 25,

6 Exadata Architecture, ½ Rack (X6-2) Complete Optimized Standardized Hardened Database Platform Fully Redundant Standard Database Servers 4x 2-socket servers è 176 cores, 3TB DRAM Unified Ultra-Fast Network 40 Gb InfiniBand internal connectivity è all ports active 10 Gb or 1 Gb Ethernet data center connectivity Scale-out Intelligent Storage Servers 7x 2-socket servers è 140 cores in storage 40 SAS disk drives è 672 TB total capacity HC drives 20 Flash PCI cards è ~90 TB Flash

7 Redundancy notes All networking is redundant in all configurations (IB and 10GB Ethernet) The administrative network is never redundant (1GB ILOM / ADMIN port on Exadata / eth0) If you are doing on-line storage cell patching, I would highly recommend a minimum of 4 storage nodes E.G. ability to lose 2 storage nodes Presentation Title April 25,

8 2. Networking The network in Exadata can be complex Minimum of 3 networks 1. Admin network (eth0) 1GB Ethernet Minimal usage 2. IB network (ib0 / ib1) 40GB InfiniBand Storage, Cluster, Cache Fusion, possibly NFS, SQL*NET 3. Public network (bondeth0 / eth4 / eth5) 10GB Ethernet Primary interface for applications Note: You can have custom configurations beyond this Presentation Title April 25,

9 Public network / LISTENER Primary connectivity for DB Recommend hostname of DB nodes matches PUBLIC network IP (note, default from Oracle is admin network IP) LISTENER VIP LISTENER, SCAN LISTENER will run on this network Allows for external interfaces (SOA, data loads, DW, etc ) Make sure LOCAL_LISTENER and REMOTE_LISTENER are set right for your EBS database Presentation Title April 25,

10 Admin Network By default, local LISTENER on the server will listen on this IP Make sure application connections are not using this If the ADMIN IP is your hostname: Make sure LOCAL + REMOTE_LISTENER are set right LISTENERS can re-direct connections to wrong network Autoconfig will pick up hostname by default Presentation Title April 25,

11 IB Network If you have application servers on IB, add IB_LISTENER (MOS Note ) BUT EBS 12.2 does not support both PUBLIC and IB LISTENER EBS 12.1 does support this You can probably hack the DB configuration, but will break your EBS 12.2 clone process IB Network MTU should be (Exadata version ) Presentation Title April 25,

12 NFS You will probably be using NFS Shared storage between APP and DB tier Backups (ZFS?) DB files for non-production Oracle Note: covers NFS settings for DB file and backup usage For shared storage between APP and DB tier (CSF) If supported NFSv4 recommended (ZFS supports this) NFSv4 requires shared directory system (NIS or better yet LDAP) Your OS users and groups should exist in your shared directory Presentation Title April 25,

13 NFS Continued NFS Mount Options MOS Note covers NFS v3 options NFSv4 options for IB are covered in EBS MAA Whitepaper nfs4 rw,bg,hard,nointr,rsize=131072,wsize= If not using NFS over IB (ZFS), recommend HA NFS over public network for light usage (shared App storage) DB backups on NFS, recommend physically segmented network Jumbo frames if supported 10GB Ethernet if possible IB if using ZFS appliance for backup Presentation Title April 25,

14 Additional IB / ZFS / Network best practices 1. Enable scatter / gather on Exadata (ver ) cat /sys/module/ib_ipoib/parameters/cm_ibcrc_as_csum 1 = enabled 2. Confirm ZFS supports scatter / gather (version , ) 3. Exadata IPoIB receive queue size of 2048 cat /sys/module/ib_ipoib/parameters/recv_queue_size 4. Exadata TCP Segmentation Offload (TSO) is disabled /sbin/ethtool --show-offload <interface> 5. Exadata, confirm IB MTU of Note: check Exalogic ZFS IB interface firmware for fencing bug Presentation Title April 25,

15 3. OS Configuration - HugePages HugePages you need to configure this /etc/sysctl.conf - vm.nr_hugepages=<number of pages> Pages are 2MB on Linux x86-64 by default You can not use all the memory on the server! Save Non-hugepage memory for: Operating System (OS) PGA DB utilities (RMAN, SQL*Loader, SQL*Plus, etc ) Other non database utilities Recommend setting this higher than minimum memory needed to account for DB changes over time. Start with MOS note: for sizing advice Presentation Title April 25,

16 Memory Management Exadata uses RAC / GI clustering, memory management is key! Memory race conditions / out of memory issues = node evictions You must use HugePages for DB memory (OS + DB settings MOS ID ) /etc/sysctl.conf - vm.min_free_kbytes = Reserves low memory for the OS to prevent race conditions ( for X?-8) Also required for NFS usage When consolidating databases: Keep track of all DB memory usage Do no over-use memory on individual nodes Keep enough memory free for sessions + non-database processes Note: many EBS systems have 1,000+ sessions taking up 1MB each Presentation Title April 25,

17 OS Users OS Users need to be consistent across all nodes of the cluster, and on the application tiers! Recommend central directory (NIS or better LDAP) UID and GID number matter! If you have existing, make sure OEDA has those numbers during Exadata install OS Limits - /etc/security/limits.conf + /etc/security/limits.d/* Settings in limits.d directory override the limits.conf file! Be consistent on all nodes (DB + App tiers) Recommend making a custom configuration file for limits.d with your needed setup and copy to all nodes (E.G. 98-mylimits.conf) Presentation Title April 25,

18 Local Storage You need unique storage for EBS database homes EBS DB homes on RAC can not be shared across nodes Two main options Use /u01 and increase the size for what you need Add a new mountpoint (E.G. /p01) Carved out of local disk / LVM volumes on each node Exadata Database Machine Maintenance Guide ' => 'Resizing LVM Partition Note: be sure to leave room for LVM snapshots for backup! Presentation Title April 25,

19 4. Cluster Settings RAC node timeout CSS miscount - seconds of failure for cluster before restart Previously was default to 60 seconds For missions critical apps recommend 30 seconds New default is 30 seconds Reduces cluster stall or hang during incidents (termed as brownout) As GRID owner user: crsctl get css misscount Presentation Title April 25,

20 LISTENER Dead Connection Detection For critical systems, recommended to enable DCD Server side verifies the client is alive SQLNET.ORA setting on server side (LISTENER) $GRID_HOME/network/admin/sqlnet.ora $ORACLE_HOME/network/admin/sqlnet.ora SQLNET.EXPIRE_TIME = <minutes> MOS Note: Presentation Title April 25,

21 5. Storage Settings - IORM For EBS on Exadata Oracle recommends IORM Plan objective=balanced CellCLI command: alter iormplan objective=balanced This setting: Allows large IO s for 90% of disk capacity If there is any queuing of IO, putts small requests at the front of the queue Presentation Title April 25,

22 Flash Cache settings Write Through writes go to disk, Conservative setting Write Back writes go to cache, written to disk out of band You can see more performance, if your EBS has a lot of write operations, with Write Back turned on X5 and bellow defaults to Write Through X6 defaults to Write Back More details and how to change: Note: Monthly brownout of flash cache for backup battery cycle test Presentation Title April 25,

23 6. DB Settings Log Writer Exadata can accommodate large redo log buffers Minimum of 128MB, can go larger Unset LOG_CHECKPOINT_INTERVAL Use FAST_START_MTTR_TARGET instead MTTR advisor can provide advice (if licensed) Should be > 300 (Exacheck will report this) Helps with batch (CM) program performance Exadata Flash Logging enabled after Exadata Note: flash logging uses only 512MB of the 300+GB of flash, so a small investment for huge improvement! Presentation Title April 25,

24 Fixed Object Statistics Should be done on the new platform (Exadata) Needs to be done after the database is warmed up Should be done during off-peak time exec dbms_stats.gather_fixed_objects_stats( ALL ); Note 1: 12c has automatic collection for this (unless automatic collection is turned off, which is normal for EBS) Note 2: This is normally a one time item event (may need to be repeated after major patches) Presentation Title April 25,

25 INIT.ORA settings Exacheck will give you good guidance in this space, But, it is just guidance, you will need to sort through what is needed by your system and all the best recommendations. Presentation Title April 25,

26 Database patches Must follow specific note: MOS ID Database Patches Required by Oracle EBusiness Suite on Oracle Engineered Systems: Exadata Database Machines and SuperClusters This note supersedes any other note when running EBS on Exadata Presentation Title April 25,

27 7. EBS configuration items Concurrent Managers Recommend hosting on application server or dedicated server Recommend not running on Exadata tier Different patching cycles / levels from DB to app tier Exadata = quarterly QFSDP or BP App Tier =??? Easier to manage with application technology stack May still share NFS mounts with DB tier for UTL_FILE access Presentation Title April 25,

28 8. Maintaining Exadata Exacheck Exacheck built in and free tool with Exadata Upgrades at least quarterly, MOS ID Has specific checks for EBS Recent version = 1,902 checks (cluster, hardware, software, OS, network, database) Collection Manager Free application express (APEX) application Provides central repository for Exacheck reports Alerts, trends, graphs, etc.. You should review the reports and take actions! Presentation Title April 25,

29 April 25, 2017 Presentation Title 29

30 Patching Exadata Recommend using the QFSDP Quarterly Full Stack Download Patch Patches the OS, Network, Storage, Grid Infrastructure Database can be patched at same time, or latter time Exadata / GI must be at newer or same level as DB patch Patches come out quarterly, contain critical fixes OS CVE Security bugs (shell shock, HeartBlead, DirtyCOW, etc ) Critical fixes NFS buffers, memory leaks, GI stability Patching process will depend a lot on your environment Recommend a N-1 patching level Presentation Title April 25,

31 Suggested Exadata Patching Process Exadata support on-line patching EBS does not support on-line infrastructure patching Recommended method: Shutdown EBS (outage starts) Shutdown DB Patch DB server OS / Firmware Patch GI Bring DB + EBS back up (outage ends) Patch Storage cells on-line (if high redundant, and 4 or more storage cells) Patch IB switch on-line Total outage depends on number of DB nodes, but should be less than 5 or 6 hours. There are other methods and models, but they are much more complex. Presentation Title April 25,

32 Exadata Backups Recommend OS backups on Exadata Use in-house OS backup tools (Tivoli, NetBackup, etc ) Use LVM snapshots + simple OS tools like TAR Oracle Exadata Database Machine Maintenance Guide => chapter 2.10 Creating a Snapshot-Based Backup of Oracle Linux Database Server Example script: /opt/oracle.supporttools/dbserver_backup.sh Note: this script only backups up the OS, not /u01 or any other added mount points. Presentation Title April 25,

33 Wrap up Lots of documents out there Pretty well documented but not all in one place Exadata is a great start, but Still need to piece together a full EBS system Presentation Title April 25,

34 Questions April 25,

35 References Oracle E-Business Suite and Oracle MaximumAvailability Architecture Best Practices April 2014 MOS ID Database Patches Required by Oracle EBusiness Suite on Oracle Engineered Systems: Exadata Database Machines and SuperClusters MOS ID Guidelines When Using ZFS Storage in an Exadata Environment MOS ID Oracle ZFS Storage: FAQ: Exadata RMAN Backup with The Oracle ZFS Storage Appliance MOS ID Setup Listener on Infiniband Network using both SDP and TCP Protocol MOS ID Oracle Linux: Shell Script to Calculate Values Recommended Linux HugePages / HugeTLB Configuration MOS ID USE_LARGE_PAGES To Enable HugePages Presentation Title April 25,

36 References MOS ID Exadata WriteBack Flash Cache FAQ MOS ID Oracle Exadata Database Machine exachk or HealthCheck Presentation Title April 25,

37

Oracle Exadata and OVM Best Practice Overview

Oracle Exadata and OVM Best Practice Overview Oracle Exadata and OVM Best Practice Overview Nov 2017 Update Topics Covered Ø Use Cases Ø ExadataOVM Software Requirements Ø ExadataIsolation Considerations Ø Exadata OVM Sizing and Prerequisites Ø Exadata

More information

Oracle E-Business Suite and Oracle Maximum Availability Architecture Best Practices

Oracle E-Business Suite and Oracle Maximum Availability Architecture Best Practices An Oracle White Paper April 2014 Oracle E-Business Suite and Oracle Maximum Availability Architecture Best Practices Including a Case Study on Oracle Exalogic and Oracle Exadata Database Machine 1 Table

More information

Exadata Monitoring and Management Best Practices

Exadata Monitoring and Management Best Practices Exadata Monitoring and Management Best Practices Mughees A. Minhas Oracle Redwood Shores, CA, USA Keywords: Oracle, Exadata, monitoring, management, database, performance, monitor, Enterprise Manager,

More information

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer

Oracle Exadata X7. Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer Oracle Exadata X7 Uwe Kirchhoff Oracle ACS - Delivery Senior Principal Service Delivery Engineer 05.12.2017 Oracle Engineered Systems ZFS Backup Appliance Zero Data Loss Recovery Appliance Exadata Database

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

Making Storage Smarter Jim Williams Martin K. Petersen

Making Storage Smarter Jim Williams Martin K. Petersen Making Storage Smarter Jim Williams Martin K. Petersen Agenda r Background r Examples r Current Work r Future 2 Definition r Storage is made smarter by exchanging information between the application and

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades

<Insert Picture Here> Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades Doug Utzig

More information

Exadata Database Machine Security Tina Rose Platform Integration MAA Team, Exadata Development

Exadata Database Machine Security Tina Rose Platform Integration MAA Team, Exadata Development Exadata Database Machine Security Tina Rose Platform Integration MAA Team, Exadata Development Thanks to Dan Norris Safe Harbor Statement The following is intended to outline our general product direction.

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

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

Oracle Exadata Recipes

Oracle Exadata Recipes Oracle Exadata Recipes A Problem-Solution Approach John Clarke Apress- Contents About the Author About the Technical Reviewer Acknowledgments Introduction xxxiii xxxv xxxvii xxxix Part 1: Exadata Architecture

More information

Oracle 1Z Exalogic Elastic Cloud X2-2 Essentials.

Oracle 1Z Exalogic Elastic Cloud X2-2 Essentials. Oracle 1Z0-569 Exalogic Elastic Cloud X2-2 Essentials http://killexams.com/exam-detail/1z0-569 The Cisco management switch has direct network access to the Power Distribution Units (PDUs). QUESTION: 103

More information

Database Consolidation with Oracle Exadata

Database Consolidation with Oracle Exadata Database Consolidation with Oracle Exadata Techniques and Best Practices Manish Shah Sr. Principal Product Manager, Exadata Oracle Corporation Ajit Singh Director, Data Technology Platforms New York Stock

More information

An Oracle White Paper October Siebel MAA. with Case Study on Exalogic and Exadata

An Oracle White Paper October Siebel MAA. with Case Study on Exalogic and Exadata An Oracle White Paper October 2013 Siebel MAA with Case Study on Exalogic and Exadata 1 Executive Overview... 3 2 Introduction... 4 2.1 Introduction to Engineered Systems... 4 3 Siebel Maximum Availability

More information

Introduction. Published in IOUG Select Magazine

Introduction. Published in IOUG Select Magazine Introduction Exadata Machine was first introduced by Oracle in 2008 and now it has become one of the most popular database platform to host Oracle databases. Exadata machine is like a mini data center

More information

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Exadata Security Flash Cache and Log Storage Indexes Parallel Execution Agenda Exadata Security Flash Cache and Log Storage

More information

Exadata Database Machine Administration Workshop

Exadata Database Machine Administration Workshop Exadata Database Machine Administration Workshop Duration : 32 Hours This course introduces you to the Oracle Exadata Database Machine. You'll learn about the various Exadata Database Machine features

More information

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13 Operational Best Practices for Oracle Exadata Lawrence To Senior Director,

More information

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 800-260-690 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training

More information

Exadata Database Machine Administration Workshop NEW

Exadata Database Machine Administration Workshop NEW Exadata Database Machine Administration Workshop NEW What you will learn: This course introduces students to Oracle Exadata Database Machine. Students learn about the various Exadata Database Machine features

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

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 00 9714 390 9050 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop

More information

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days This Exadata Database Machine: 12c Administration Workshop introduces you to Oracle Exadata Database Machine. Explore the various

More information

Exadata Patching Demystified. Kshitij Joy (12c OCM)

Exadata Patching Demystified. Kshitij Joy (12c OCM) Exadata Patching Demystified Kshitij Joy (12c OCM) About Me Director & Founder of DB Alchemist Limited Member of an elite group of Oracle Professionals by successful completion of Oracle Certified Master

More information

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

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

More information

Oracle Exadata. Smart Database Platforms - Dramatic Performance and Cost Advantages. Juan Loaiza Senior Vice President Oracle Database Systems

Oracle Exadata. Smart Database Platforms - Dramatic Performance and Cost Advantages. Juan Loaiza Senior Vice President Oracle Database Systems Oracle Exadata Smart Database Platforms - Dramatic Performance and Cost Advantages Juan Loaiza Senior Vice President Oracle Database Systems Exadata X5-2 Exadata X5-8 SuperCluster M7-8 Exadata Vision Dramatically

More information

<Insert Picture Here> Oracle MAA und RAC Best Practices und Engineered Systems

<Insert Picture Here> Oracle MAA und RAC Best Practices und Engineered Systems Oracle MAA und RAC Best Practices und Engineered Systems Jörg Eggelsmann joerg.eggelsmann@oracle.com Leitender Systemberater 0177 5943 142 STCC Nord DB Agenda Maximum Availability

More information

Key to A Successful Exadata POC

Key to A Successful Exadata POC BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

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

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 EXAM - 1Z Exalogic Elastic Cloud X2-2 Essentials. Buy Full Product.

Oracle EXAM - 1Z Exalogic Elastic Cloud X2-2 Essentials. Buy Full Product. Oracle EXAM - 1Z0-569 Exalogic Elastic Cloud X2-2 Essentials Buy Full Product http://www.examskey.com/1z0-569.html Examskey Oracle 1Z0-569 exam demo product is here for you to test the quality of the product.

More information

Oracle Exalogic Elastic Cloud Overview. Peter Hoffmann Technical Account Manager

Oracle Exalogic Elastic Cloud Overview. Peter Hoffmann Technical Account Manager Oracle Exalogic Elastic Cloud Overview Peter Hoffmann Technical Account Manager Engineered Systems Driving trend in IT for the next decade Oracle Exalogic Elastic Cloud Hardware and Software, Engineered

More information

Certified Platinum Configurations Last Updated: 3-November-2017

Certified Platinum Configurations Last Updated: 3-November-2017 Last Updated: 3-November-2017 The tables in this document describe the Certified Platinum Configurations currently effective for the applicable engineered system. In order to determine which table applies

More information

Exadata Database Machine: 12c Administration Workshop Ed 1

Exadata Database Machine: 12c Administration Workshop Ed 1 Oracle University Contact Us: 20 (0)2 35350254 Exadata Database Machine: 12c Administration Workshop Ed 1 Duration: 5 Days What you will learn This course introduces students to Oracle Exadata Database

More information

Exdata Database Machine: 12c Administration Workshop Ed 2

Exdata Database Machine: 12c Administration Workshop Ed 2 Exdata Database Machine: 12c Administration Workshop Ed 2 Duration 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training introduces you to Oracle Exadata Database

More information

Exadata Database Machine Administration Workshop

Exadata Database Machine Administration Workshop Exadata Database Machine Administration Workshop Training Calendar Date Training Time Location 11 March 2019 5 Days Bilginç IT Academy 15 April 2019 5 Days Bilginç IT Academy Training Details Training

More information

Arup Nanda Longtime Oracle DBA (and now DMA)

Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA)

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

An Oracle White Paper Updated March Protecting Oracle Exadata with the Sun ZFS Storage Appliance: Configuration Best Practices

An Oracle White Paper Updated March Protecting Oracle Exadata with the Sun ZFS Storage Appliance: Configuration Best Practices An Oracle White Paper Updated March 2013 Protecting Oracle Exadata with the Sun ZFS Storage Appliance: Configuration Best Practices Introduction... 1 Overview of Oracle Exadata with the Sun ZFS Storage

More information

Oracle Exalogic Elastic Cloud 2.x: System Administration

Oracle Exalogic Elastic Cloud 2.x: System Administration Oracle Exalogic Elastic Cloud 2.x: System Administration Student Guide D77799GC20 Edition 2.0 April 2014 D85909 Author TJ Palazzolo Technical Contributors and Reviewers Jose Alvarez Diganta Choudhury Rick

More information

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Duration: 5 Days What you will learn This Oracle Database 12c: Clusterware & RAC Admin Accelerated

More information

Oracle 12c Grid Infrastructure Management Repository Everything You Wanted To Know

Oracle 12c Grid Infrastructure Management Repository Everything You Wanted To Know Oracle 12c Grid Infrastructure Management Repository Everything You Wanted To Know Mark V. Scardina - Director Oracle QoS Management & Oracle Autonomous Health Framework Copyright 2016, Oracle and/or its

More information

<Insert Picture Here> Introducing Oracle WebLogic Server on Oracle Database Appliance

<Insert Picture Here> Introducing Oracle WebLogic Server on Oracle Database Appliance Introducing Oracle WebLogic Server on Oracle Database Appliance Oracle Database Appliance with WebLogic Server Simple. Reliable. Affordable. 2 Virtualization on Oracle Database Appliance

More information

Oracle Enterprise Architecture. Software. Hardware. Complete. Oracle Exalogic.

Oracle Enterprise Architecture. Software. Hardware. Complete. Oracle Exalogic. Oracle Enterprise Architecture Software. Hardware. Complete Oracle Exalogic edward.zhang@oracle.com Exalogic Exalogic Exalogic -- Exalogic Design Center Exalogic - Sun Oracle - - - CPU/Memory/Networking/Storage

More information

Re-platforming the E-Business Suite Database

Re-platforming the E-Business Suite Database Re-platforming the E-Business Suite Database Ahmed Alomari Performance Specialist aalomari@cybernoor.com Database SIG Agenda Options Case Study Q & A Options Re-platforming Options Transportable DB Transportable

More information

1Z Oracle Exadata X5 Administration Exam Summary Syllabus Questions

1Z Oracle Exadata X5 Administration Exam Summary Syllabus Questions 1Z0-070 Oracle Exadata X5 Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-070 Exam on Oracle Exadata X5 Administration... 2 Oracle 1Z0-070 Certification Details:...

More information

<Insert Picture Here> Managing Oracle Exadata Database Machine with Oracle Enterprise Manager 11g

<Insert Picture Here> Managing Oracle Exadata Database Machine with Oracle Enterprise Manager 11g Managing Oracle Exadata Database Machine with Oracle Enterprise Manager 11g Exadata Overview Oracle Exadata Database Machine Extreme ROI Platform Fast Predictable Performance Monitor

More information

Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions

Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions Mellanox InfiniBand Solutions Accelerate Oracle s Data Center and Cloud Solutions Providing Superior Server and Storage Performance, Efficiency and Return on Investment As Announced and Demonstrated at

More information

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

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

More information

Oracle Clustering: Oracle 11g Real Application Clusters for Administrators

Oracle Clustering: Oracle 11g Real Application Clusters for Administrators Oracle Clustering: Oracle 11g Real Application Clusters for Administrators Duration: 40Hrs (8 Hours per Day * 5 Days) Oracle 11g Clustering Overview Introduction to Oracle 11g Clusters for Administrators

More information

Exadata Implementation Strategy

Exadata Implementation Strategy BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

Oracle Exadata Course Content

Oracle Exadata Course Content 1 Oracle Exadata Course Content Introduction Course Objectives Audience and Prerequisites Course Contents Terminology Additional Resources Introducing the Laboratory Environment Exadata Database Machine

More information

Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP. Thursday, April 18, 13

Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP. Thursday, April 18, 13 Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP Who am I? Frits Hoogland Working with Oracle products since 1996 Blog: http://fritshoogland.wordpress.com Twitter: @fritshoogland Email: fhoogland@vxcompany.com

More information

RAC for Beginners. Arup Nanda Longtime Oracle DBA (and a beginner, always)

RAC for Beginners. Arup Nanda Longtime Oracle DBA (and a beginner, always) Arup Nanda Longtime Oracle DBA (and a beginner, always) This image cannot currently be displayed. Continue Your Education Communities Knowledge April 7-11, 2013 Saring Colorado Convention Center Education

More information

What Really Sets Apart Exadata from the Rest

What Really Sets Apart Exadata from the Rest 1 What Really Sets Apart Exadata from the Rest Presented By: Zahid Anwar, Principal Oracle DBA Consultant 3 rd December 2018 Company Classification: Public A bit about myself Principal Oracle DBA Consultant

More information

ORACLE RAC DBA COURSE CONTENT

ORACLE RAC DBA COURSE CONTENT ORACLE RAC DBA COURSE CONTENT Course Objectives Understand Oracle Clusterware architecture Describe how Grid Plug and Play affects Clusterware Describe Automatic Storage Management (ASM) architecture Perform

More information

Oracle - Exadata Database Machine: 12c

Oracle - Exadata Database Machine: 12c Oracle - Exadata Database Machine: 12c Administration Workshop Ed 2 Code: Lengt h: URL: D92889GC20 5 days View Online This Exadata Database Machine: 12c Administration Workshop training introduces you

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into 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

Storage Optimization with Oracle Database 11g

Storage Optimization with Oracle Database 11g Storage Optimization with Oracle Database 11g Terabytes of Data Reduce Storage Costs by Factor of 10x Data Growth Continues to Outpace Budget Growth Rate of Database Growth 1000 800 600 400 200 1998 2000

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

Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2018

Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2018 Oracle ASM Considerations for Exadata Deployments: On-premises and Cloud ORACLE WHITE PAPER MARCH 2018 Disclaimer The following is intended to outline our general product direction. It is intended for

More information

Oracle Database Appliance

Oracle Database Appliance Oracle Database Appliance Robert van Espelo EMEA Lead for Oracle Database Appliance Hardware Business Development Oracle Database Appliance Simple. Reliable. Affordable. Available

More information

Oracle RAC Course Content

Oracle RAC Course Content 1 Oracle RAC Course Content Oracle 11g R2 Grid Infrastructure Concepts What is a Cluster Grid Foundation Components Oracle Clusterware Architecture Oracle Clusterware Software and Storage Describe ASM

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals of basic database

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

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : 1z1-070 Title : Oracle Exadata X5 Administration Vendor : Oracle Version : DEMO Get

More information

Oracle Database 11g: Administration I

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

More information

Oracle Exadata High Availability Secrets Explained: Direct from Development Technical Presentation

Oracle Exadata High Availability Secrets Explained: Direct from Development Technical Presentation Oracle Exadata High Availability Secrets Explained: Direct from Development Technical Presentation René Kundersma Consulting Member of Technical Staff; MAA and Exadata Best Practices Oracle Server Technologies

More information

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW UKOUG RAC SIG Meeting London, October 24 th, 2006 Luca Canali, CERN IT CH-1211 LCGenève 23 Outline Oracle at CERN Architecture of CERN

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications

<Insert Picture Here> Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications Hector Pujol Hector Pujol Consulting Member of Technical Staff, Oracle X and MAA Teams Exadata MAA Best

More information

Oracle Database 12c R2: RAC Administration Ed 2

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

More information

Oracle 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 Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 55-800-891-6502 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

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

Backup and Recovery Performance and Best Practices using the Sun ZFS Storage Appliance with the Oracle Exadata Database Machine

Backup and Recovery Performance and Best Practices using the Sun ZFS Storage Appliance with the Oracle Exadata Database Machine An Oracle White Paper April 2012 Backup and Recovery Performance and Best Practices using the Sun ZFS Storage Appliance with the Oracle Exadata Database Machine Executive Overview... 4 Introduction...

More information

What s Next with Oracle RAC?

What s Next with Oracle RAC? What s Next with Oracle RAC? Sandesh Rao Senior Director, Oracle Real Application Clusters (RAC) Database Development Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle RAC 12c Rel.

More information

Achieving Memory Level Performance: Secrets Beyond Shared Flash

Achieving Memory Level Performance: Secrets Beyond Shared Flash Achieving Memory Level Performance: Secrets Beyond Shared Flash Kothanda (Kodi) Umamageswaran Vice President, Exadata Development Gurmeet Goindi Exadata Product Management Safe Harbor Statement The following

More information

PracticeTorrent. Latest study torrent with verified answers will facilitate your actual test

PracticeTorrent.   Latest study torrent with verified answers will facilitate your actual test PracticeTorrent http://www.practicetorrent.com Latest study torrent with verified answers will facilitate your actual test Exam : 1z1-068 Title : Oracle Database 12c: RAC and Grid Infrastructure Administration

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

Sun N1: Storage Virtualization and Oracle

Sun N1: Storage Virtualization and Oracle OracleWorld 2003 Session 36707 - Sun N1: Storage Virtualization and Oracle Glenn Colaco Performance Engineer Sun Microsystems Performance and Availability Engineering September 9, 2003 Background PAE works

More information

A Real-World Technical Case Study of a Global Manufacturer

A Real-World Technical Case Study of a Global Manufacturer An Oracle White Paper March 2015 A Real-World Technical Case Study of a Global Manufacturer Oracle E-Business Suite, Oracle Exadata, and the Oracle Maximum Availability Architecture Summary One of the

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

An Oracle White Paper July Garmin International Inc. Oracle Exadata Database Machine Technical Case Study

An Oracle White Paper July Garmin International Inc. Oracle Exadata Database Machine Technical Case Study An Oracle White Paper July 2012 Garmin International Inc. Oracle Exadata Database Machine Technical Case Study Contents Executive Overview... 2 Intended Audience... 4 Introduction... 4 Oracle Exadata Database

More information

Focus On: Oracle Database 11g Release 2

Focus On: Oracle Database 11g Release 2 Focus On: Oracle Database 11g Release 2 Focus on: Oracle Database 11g Release 2 Oracle s most recent database version, Oracle Database 11g Release 2 [11g R2] is focused on cost saving, high availability

More information

Experience of being a Cloud DBA

Experience of being a Cloud DBA Experience of being a Cloud DBA Satyendra Pasalapudi Associate Practice Director Apps Associates LLC April 26, 2016 Copyright 2016. Apps Associates LLC. 1 About Me Satyendra Kumar Pasalapudi Associate

More information

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

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

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure

More information

JapanCert 専門 IT 認証試験問題集提供者

JapanCert 専門 IT 認証試験問題集提供者 JapanCert 専門 IT 認証試験問題集提供者 http://www.japancert.com 1 年で無料進級することに提供する Exam : 1z0-485 Title : Exadata Database Machine Models X3-2 and X3-8 Implementation Essentials Vendor : Oracle Version : DEMO 1 / 5

More information

Oracle Database Appliance

Oracle Database Appliance Oracle Database Appliance Release Notes Release 12.1.2.10.0 for Linux x86-64 E83195-01 February 2017 This document may be updated after the most recent version of the product is released. To check for

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

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

Hitchhiker's Guide. to upgrade to Oracle Database 12c. Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation

Hitchhiker's Guide. to upgrade to Oracle Database 12c. Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation Hitchhiker's Guide to upgrade to Oracle Database 12c Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation Updated: 3-APR-2014 Hitchhiker's Guide to Oracle Database Upgrades

More information

<Insert Picture Here> Exadata Hardware Configurations and Environmental Information

<Insert Picture Here> Exadata Hardware Configurations and Environmental Information Exadata Hardware Configurations and Environmental Information Revised July 1, 2011 Agenda Exadata Hardware Overview Environmental Information Power InfiniBand Network Ethernet Network

More information

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

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

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop I

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop I Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop I What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals

More information

An Oracle White Paper November A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server

An Oracle White Paper November A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server An Oracle White Paper November 2012 A Technical Overview of the Oracle Exadata Database Machine and Exadata Storage Server Introduction... 2 Exadata Product Family... 4 The Exadata Engineered System...

More information

Configuring a Single Oracle ZFS Storage Appliance into an InfiniBand Fabric with Multiple Oracle Exadata Machines

Configuring a Single Oracle ZFS Storage Appliance into an InfiniBand Fabric with Multiple Oracle Exadata Machines An Oracle Technical White Paper December 2013 Configuring a Single Oracle ZFS Storage Appliance into an InfiniBand Fabric with Multiple Oracle Exadata Machines A configuration best practice guide for implementing

More information