Reduce Infrastructure costs with Oracle Clusterware

Size: px
Start display at page:

Download "Reduce Infrastructure costs with Oracle Clusterware"

Transcription

1 Reduce Infrastructure costs with Oracle Clusterware How to Reduce License Cost without losing High Availability Presented By: Bill Pritchett, Senior Consultant

2 Discussion Topics Advantages of having a single instance database as a clustered resource Process to implement a database as a clustered resource Key Considerations and Attributes when implementing a database as a clustered resource Shared storage options for non oracle files that need to be shared between nodes Documentation Resources Questions 2

3 Advantages of having a single instance database as a clustered resource Reduce Budget Impact Enable automatic Failover of a Database Instance Ability to provide automatic failover for all applications on a database server 3

4 Reduce Budget Impact License one server per cluster for Database use Clusterware and ASM are free with Database License Expenses for Database Licensing are cut in half Reduce future support costs 4

5 Enable automatic Failover of Database Instance Reduce downtime due to unplanned outages Reduce downtime related to Server maintenance Reduce downtime for Database patching Enable automatic failover for NIC Card related issues Enable automatic failover when network issues occur 5

6 Provide automatic failover for all applications on a database server Remove need for manual application migration Reduce downtime related to Server maintenance Enable Cluster management of non Oracle Applications 6

7 Process to implement a database to a clustered resource Install Software and Create Database Create an Action Script Create a resource attribute file Remove Database from cluster Add database back to cluster as a clustered resource 7

8 Install Software and Create Database Install Clusterware on all servers Request 3 Ips per server and 3 Ips for the SCAN Listener Verify all Ips except the private Ips resolve using nslookup (This includes reverse lookup) Create Voting Disk ASM diskgroup Verify passwordless SSH capability for Clusterware Owner Create rest of ASM Diskgroups 8

9 Install Software and Create Database (Continued) Install the Database software using the RAC install option Select install Database Software only Select Oracle Real Application Clusters database installation Select all cluster nodes Verify passwordless SSH capability for Database software Owner Create Single instance database using DBCA Make Sure to Select Oracle Single Instance Database 9

10 Create an Action Script Action Scripts are required for managing an application as a clustered resource. Action Scripts must be owned by Oracle and executable by Root Should be created in a directory owned by Oracle under the GRID_HOME/crs directory The Action Script is usually a perl or shell script. It consists of the following: Oracle Home and Oracle Sid variables Case statement containing the following entry points: Start, Stop, Clean, Check and abort(optional) IF statement test case to determine success or failure of entry point 10

11 Create an Action Script Start Entry Point The START entry point acts to bring a resource online. The agent framework calls this entry point whenever it receives the start command from Oracle Clusterware. Example Start entry Point 'start') $ORACLE_HOME/bin/sqlplus /nolog <<EOF conn / as sysdba startup exit EOF RET=0 ;; 11

12 Create an Action Script Stop Entry Point The STOP entry points acts to gracefully bring down a resource. The agent framework calls this entry point whenever it receives the stop command from Oracle Clusterware. Example Stop entry Point 'stop') $ORACLE_HOME/bin/sqlplus /nolog <<EOF conn / as sysdba shutdown immediate exit EOF RET=0 ;; 12

13 Create an Action Script Clean Entry Point The CLEAN entry point acts whenever there is a need to clean up a resource. It is a non-graceful operation that is invoked when users must forcefully terminate a resource. This command cleans up the resourcespecific environment so that the resource can be restarted. Example Clean entry Point 'clean') $ORACLE_HOME/bin/sqlplus /nolog <<EOF conn / as sysdba shutdown abort exit EOF RET=0 ;; 13

14 Create an Action Script Check Entry Point The CHECK (monitor) entry point acts to monitor the health of a resource. The agent framework periodically calls this entry point. If it notices any state change during this action, then the agent framework notifies Oracle Clusterware about the change in the state of the specific resource Example Check entry Point 'check') ok=`ps -ef grep smon grep $ORACLE_SID grep -v grep wc -l` if [ $ok = 0 ]; then RET=1 else RET=0 fi ;; 14

15 Create an Action Script Abort Entry Point If any of the other entry points hang, the agent framework calls the ABORT entry point to abort the ongoing action. If the agent developer does not supply an abort function, then the agent framework exits the agent program.example Check entry Point Optional Entry Point abort') killcmd=`ps -ef grep pmon grep $ORACLE_SID grep -v grep awk {print $2} ` kill -9 $killcmd if [ $? = 0 ]; then RET=0 else RET=1 fi ;; 15

16 Create a resource attribute file The Attributes of a database differ from the Attributes of a clustered resource. This creates the need to modify the resource attributes Create a resource file by running the following command $GRID_HOME/bin/crsctl stat res <db resource name> -p > mydb_resource.txt Modify resource attributes to resemble a clustered resource TYPE ACTION_SCRIPT AUTO_START START_DEPENDENCIES STOP_DEPENDENCIES 16

17 Remove Database from cluster (As Database Owner) Shutdown the database srvctl stop database d <database name> Remove the database from the cluster srvctl remove database d <database name> 17

18 Add database back to cluster as a clustered resource (As Database Owner) To Add the Database as a clustered Resource use the following command $GRID_HOME/bin/crsctl add resource <database name>.db type cluster_resource file <full path to resource file> Then start the resource $GRID_HOME/bin/crsctl start resource ora.mytest.db -n <hostname> 18

19 Key Considerations and attributes when implementing a database as a Clustered Resource Considerations Command restrictions License restrictions TNS Information Diagnostic and Admin directories Attributes AUTO_START START_DEPENDENCIES STOP_DEPENDENCIES How to modify attributes 19

20 Key Considerations Command line startup options are limited Inability to start the database in restrict mode or mount state using srvctl commands Database may only run on secondary node 10 days out of a calendar year A day is considered used whether it runs on secondary node10 minutes or 23 hours Talk to your License representative for more information Copy the TNSNAMES.ora file from Node 1 to Node 2 Modify the local listener TNS entry on Node 2 to point to Node 2 Build Diagnostics and Admin directory structures on Node 2 Diagnostics directory should be on shared storage if possible 20

21 Key Attribute AUTO_START Determines how the resource is started after a system reboot. The following settings are valid always: Restarts the resource when the server restarts regardless of the state of the resource when the server stopped. restore: Restores the resource to the same state that it was in when the server stopped. Oracle Clusterware attempts to restart the resource if the value of TARGET was ONLINE before the server stopped. never: Oracle Clusterware never restarts the resource regardless of the state of the resource when the server stopped. An AUTO_START setting of never can be overridden if the START_DEPENDENCIES attribute contains any pullup dependencies. If you only license one server of the cluster then you should set AUTO_START to never so that you can make sure the database starts up on node one 21

22 Key Attribute START_DEPENDENCIES Enforces resource dependencies so that the resource only starts once all the dependencies are met. The following types of dependencies are valid hard([intermediate:][global:]{resource_name type:resource_type}):specify a hard start dependency for a resource when you want the resource to start only when a particular resource or resource of a particular type starts. weak([concurrent:][global:][uniform:]{resource_name type:resource_type}): Specify a weak start dependency for a resource when you want that resource to start despite whether named resources are running, or not. An attempt to start this resource also attempts to start any resources on which this resource depends if they are not running. attraction([intermediate:]{resource_name type:resource_type}):use the attraction start dependency when you want this resource to run on the same server with a particular named resource or any resource of a particular type. pullup[:always]([intermediate:][global:]{resource_name type:resource_type}):when you specify the pullup start dependency for a resource, then this resource starts as a result of named resources starting. 22

23 Key Attribute START_DEPENDENCIES (Continued) Oracle recommends that resources with hard start dependencies also have pullup start dependencies. If you specify the pullup dependency on a resource type for a resource, then, when any resource of that particular type starts, Oracle Clusterware can start this resource. This causes the AUTO_START setting of NEVER to be overridden From my example file START_DEPENDENCIES=hard(ora.DATA.dg,ora.ARCH.dg) weak(type:ora.listener.type,uniform:ora.ons) 23

24 Key Attribute STOP_DEPENDENCIES Enforce resource dependencies for shutting down the resource. The only type of dependency available is hard hard([intermediate:][global:][shutdown:]{resource_name type:resource_type}): Specify a hard stop dependency for a resource that you want to stop when named resources or resources of a particular resource type stop. If you want the database to failover to the passive node when there are issues with the Public Network then you have to specify the network as a dependency From my example file STOP_DEPENDENCIES=hard(intermediate:ora.asm,shutdown:ora.DAT A.dg,shutdown:ora.ARCH.dg,ora.net1.network) 24

25 How to modify attributes To modify the attributes of a resource you use the following command $GRID_HOME/bin/crsctl modify res <resource name> -attr <Attribute Name>= value Multiple attributes may be listed in the double quotes by using commas between the Attributes 25

26 Shared storage options for non oracle files that need to be shared between nodes To help manage files needed on both servers the Storage options listed below are available. Examples of files needed on both servers are Backup scripts Database Diag information Monitoring scripts ACFS (ASM Clustered Filesystem) utilizes ASM to manage the mountpoints NFS (Network File System) If NFS is chosen please verify the resource stop_dependencies setting includes the public network. Otherwise the database will hang if your server loses the Public Network 26

27 Documentation Resources Cluster Admin Guide 11gR2 Clusterware Administration and Deployment Guide SOP Single Single Instance Database on Grid Infrastructure 27

28 Questions 28

Configuring an Application as a Clustered Resource

Configuring an Application as a Clustered Resource Configuring an Application as a Clustered Resource By Bill Pritchett, Senior Consultant, Advizex Technologies - Managed Services Growing infrastructure costs and reduced budgets have led at times to a

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

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

Author A.Kishore Convert 11gR2 non-rac database to RAC database using rconfig

Author A.Kishore   Convert 11gR2 non-rac database to RAC database using rconfig Convert 11gR2 non-rac database to RAC database using rconfig I ve installed the new 11gR2 clustered ORACLE_HOME at /d01/oracle/app/oracle/product/11.2.0/dbhome_1 on both the nodes linux1 and linux2 New

More information

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Essentials. Buy Full Product.

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Essentials. Buy Full Product. Oracle EXAM - 1Z0-593 Oracle Real Application Clusters 11g Essentials Buy Full Product http://www.examskey.com/1z0-593.html Examskey Oracle 1Z0-593 exam demo product is here for you to test the quality

More information

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide An Oracle White Paper November 2009 Oracle RAC One Node 11g Release 2 User Guide Introduction... 1 Software Installation... 3 How to Configure an Oracle RAC One Node Database... 6 Rolling Patch Application

More information

Oracle 12c Flex ASM & Flex Cluster

Oracle 12c Flex ASM & Flex Cluster Oracle 12c Flex ASM & Flex Cluster PRESENTER Yenugula Venkata Ravikumar OCM, Head-Database Practice, 8th NOVEMBER 2014 BENGALURU, INDIA 1 2 ABOUT ME AGENDA The History of ASM Benefits Of ASM Automatic

More information

Using Oracle Clusterware to Protect Oracle Database 10g with Oracle Enterprise Manager Grid Control Integration

Using Oracle Clusterware to Protect Oracle Database 10g with Oracle Enterprise Manager Grid Control Integration Using Oracle Clusterware to Protect Oracle Database 10g with Oracle Enterprise Manager Grid Control Integration An Oracle White Paper February 2008 Introduction This paper follows on from the existing

More information

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

Oracle Database 12c: Clusterware & ASM Admin Accelerated Ed 1 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Clusterware & ASM Admin Accelerated Ed 1 Duration: 5 Days What you will learn Oracle Database 12c: Clusterware & ASM Admin Accelerated

More information

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

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn In this intensive course, students will learn about the Oracle Grid Infrastructure products. This includes

More information

OEM Provisioning Concepts and Example

OEM Provisioning Concepts and Example OEM Provisioning Concepts and Example Rob Zoeteweij Zoeteweij Consulting The Provisioning and Patch Automation Pack automates the deployment of software, applications, and patches. This paper will focus

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: 0845 777 7711 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn In this intensive course, you'll learn about

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 11g Release 2 RAC & Grid Infrastructure Administration Course Overview

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview This Oracle 11g Release 2 RAC & Grid Infrastructure Administration course provides an introduction to the general features

More information

1Z0-593 Exam Questions Demo Oracle. Exam Questions 1Z0-593

1Z0-593 Exam Questions Demo   Oracle. Exam Questions 1Z0-593 Oracle Exam Questions 1Z0-593 Oracle Real Application Clusters 11g Essentials Version:Demo QUESTION NO: 1 Once OUI recognizes a set of nodes in a cluster, which three choices does it offer when installing

More information

Maximum Availability Architecture. Oracle Best Practices for High Availability

Maximum Availability Architecture. Oracle Best Practices for High Availability Best Practices for Optimizing Availability During Planned Maintenance Using Oracle Clusterware and Oracle Real Application Clusters Oracle Maximum Availability Architecture White Paper September 2007 Maximum

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

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in Azure Cloud

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in Azure Cloud FlashGrid Provisioning and Maintenance Guide for Oracle RAC in Azure Cloud rev. 2018-03-18 2016-2018 FlashGrid Inc. Table of Contents 1 Introduction... 3 2 Compatibility... 3 3 Prerequisites... 3 4 Provisioning

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

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

W H I T E P A P E R : T E C H N I C AL. Symantec High Availability Solution for Oracle Enterprise Manager Grid Control 11g and Cloud Control 12c

W H I T E P A P E R : T E C H N I C AL. Symantec High Availability Solution for Oracle Enterprise Manager Grid Control 11g and Cloud Control 12c W H I T E P A P E R : T E C H N I C AL Symantec High Availability Solution for Oracle Enterprise Manager Grid Control 11g and Cloud Control 12c Table of Contents Symantec s solution for ensuring high availability

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 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Duration: 5 Days What you will learn This 11g

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

1Z Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions

1Z Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions 1Z0-432 Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-432 Exam on Oracle Real Application Clusters 12c Essentials... 2 Oracle 1Z0-432

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

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in Azure Cloud

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in Azure Cloud FlashGrid Provisioning and Maintenance Guide for Oracle RAC in Azure Cloud rev. 2017-11-15 2016-2017 FlashGrid Inc. Table of Contents 1 Introduction... 3 2 Compatibility... 3 3 Prerequisites... 3 4 Provisioning

More information

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

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle

More information

Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2

Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 DOAG Conference 2011 Robert Bialek Principal Consultant Trivadis GmbH BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG

More information

Oracle Database Failover Cluster with

Oracle Database Failover Cluster with Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 Robert Bialek Principal Consultant, MU-IMS Oracle Certified Master robert.bialek@trivadis.com DOAG Regional Meeting Munich, 13.12.2010

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

Configuration of SAP NetWeaver for Oracle Grid Infrastructure and Oracle Real Application Clusters 11g Release 2: A Best Practices Guide

Configuration of SAP NetWeaver for Oracle Grid Infrastructure and Oracle Real Application Clusters 11g Release 2: A Best Practices Guide An Oracle White Paper March 2011 Configuration of SAP NetWeaver for Oracle Grid Infrastructure 11.2.0.2 and Oracle Real Application Clusters 11g Release 2: A Best Practices Guide Configuration of SAP NetWeaver

More information

Oracle GoldenGate Microservices Architecture with Oracle Real Application Clusters Configuration Best Practices

Oracle GoldenGate Microservices Architecture with Oracle Real Application Clusters Configuration Best Practices Oracle GoldenGate Microservices Architecture with Oracle Real Application Clusters Configuration Best Practices O R A C L E W H I T E P A P E R A U G U S T 2 0 1 8 ORACLE GOLDENGATE MICROSERVICES ARCHITECTURE

More information

Oracle Database 12c Flex Clusters

Oracle Database 12c Flex Clusters 1 David Paschall-Zimbel Senior Technical Consultant Oracle Database 12c Flex Clusters 27 July 2016 About Collier IT Since 1991, Collier IT has specialized in creating and implementing robust infrastructure

More information

www.informatik-aktuell.de Infrastructure at your Service. Oracle Grid Infrastructure Cold failover cluster Infrastructure at your Service. About me Jérôme Witt Senior Consultant Mobile +41 79 961 27 73

More information

Oracle Database 12c: RAC Administration Ed 1 LVC

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

More information

Oracle Clusterware 18c Technical Overview 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 Clusterware 18c Technical Overview 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 Clusterware 18c Technical Overview 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 Cluster Domains 3 Conversions 3 Oracle ACFS Remote Service 5 Single Network

More information

What you will learn. interface clients. Learn To:

What you will learn. interface clients. Learn To: Oracle Uni Contact Us: 08 Oracle 11g: RAC and Grid Infrastructure Admin Durat5 Da What you will learn This Oracle 11g: RAC and Grid Infrastructure Administr Oracle Grid Infrastructure products, including

More information

Oracle Grid Infrastructure RAC Provisioning - Using OEM GC 11.1

Oracle Grid Infrastructure RAC Provisioning - Using OEM GC 11.1 Oracle Grid Infrastructure RAC Provisioning - Using OEM GC 11.1 Author: Rob Zoeteweij Date: July 14 2010 http://oemgc.wordpress.com Using the OEM GC Provisioning and Automated Patching Pack, you are able

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

Oracle Database 11g: RAC Administration Release 2 NEW

Oracle Database 11g: RAC Administration Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Database 11g: RAC Administration Release 2 NEW Duration: 4 Days What you will learn This Oracle Database 11g: RAC Administration

More information

Oracle 11gR2 New Features for RAC. OTN APAC Tour (Thailand, China, Philippines, New Zealand)

Oracle 11gR2 New Features for RAC. OTN APAC Tour (Thailand, China, Philippines, New Zealand) Oracle 11gR2 New Features for RAC OTN APAC Tour - 2011 (Thailand, China, Philippines, New Zealand) About me Independent Oracle Consultant - Summersky Enterprises e-mail: murali.vallath@summersky.biz blog:

More information

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide Veritas Cluster Server Agent for Oracle Installation and Configuration Guide Solaris 6.0 November 2011 Veritas Cluster Server Agent for Oracle Installation and Configuration Guide The software described

More information

Oracle Grid Infrastructure

Oracle Grid Infrastructure Oracle Grid Infrastructure Installation Guide 11g Release 2 (11.2) for Linux E17212-09 December 2010 Oracle Grid Infrastructure Installation Guide, 11g Release 2 (11.2) for Linux E17212-09 Copyright 2007,

More information

Oracle 1Z Oracle Real Application Clusters 12c Essentials.

Oracle 1Z Oracle Real Application Clusters 12c Essentials. Oracle 1Z0-432 Oracle Real Application Clusters 12c Essentials http://killexams.com/exam-detail/1z0-432 QUESTION: 74 The DISK_REPAIR_TIME attribute has expired after a transient disk error. What happens

More information

SOA Cloud Service Automatic Service Migration

SOA Cloud Service Automatic Service Migration SOA Cloud Service Automatic Service Migration SOACS 12.2.1.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 8 Table of Contents Introduction 1 Configuring Automatic Service Migration for a 12.2.1.2

More information

Oracle Database Failover Cluster with Grid Infrastructure 11g R2

Oracle Database Failover Cluster with Grid Infrastructure 11g R2 Oracle Database Failover Cluster with Grid Infrastructure 11g R2 Robert Bialek Trivadis GmbH Munich, DE Keywords Oracle Grid Infrastructure, Oracle Clusterware, Failover Cluster, Oracle Database High Availability,

More information

by guotao zhong August 2006

by guotao zhong August 2006 The installation of Oracle RAC 10g Release 2 on Asianux 2.0(x86-64) by guotao zhong August 2006 1. Introduction One Oracle RAC is a cluster database with a shared cache architecture that provides highly

More information

PostgreSQL on Solaris. PGCon Josh Berkus, Jim Gates, Zdenek Kotala, Robert Lor Sun Microsystems

PostgreSQL on Solaris. PGCon Josh Berkus, Jim Gates, Zdenek Kotala, Robert Lor Sun Microsystems PostgreSQL on Solaris PGCon 2007 Josh Berkus, Jim Gates, Zdenek Kotala, Robert Lor Sun Microsystems 1 Agenda Sun Cluster ZFS Zones Dtrace Service Management Facility (SMF) PGCon 2007 2 Hightly Available

More information

Supported Browsers. Known Issues. Topics. Oracle Cloud. Known Issues for Oracle Database Cloud Service

Supported Browsers. Known Issues. Topics. Oracle Cloud. Known Issues for Oracle Database Cloud Service Oracle Cloud Known Issues for Oracle Database Cloud Service E56337-42 April 2018 Supported Browsers Oracle Cloud supports the following the minimum requirements for web browsers. Web Browser Microsoft

More information

ASM migration process

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

More information

Page 1 نشانی: تهران خیابان شهید بهشتی نرسیده به قائم مقام فراهانی پالک طبقه تلفن: فکس:

Page 1 نشانی: تهران خیابان شهید بهشتی نرسیده به قائم مقام فراهانی پالک طبقه تلفن: فکس: Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2 (48 hrs.) This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle Grid Infrastructure

More information

The article performs the following task:-

The article performs the following task:- This RAC installation article is based on RAC Attack hands-on learning lab https://en.wikibooks.org/wiki/rac_attack_-_oracle_cluster_database_at_home/rac_attack_12c The article performs the following task:-

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

Leveraging Oracle ASM Cluster File System for Private Cloud Storage. Kai Yu Oracle Solutions Engineering Dell Inc

Leveraging Oracle ASM Cluster File System for Private Cloud Storage. Kai Yu Oracle Solutions Engineering Dell Inc Leveraging Oracle ASM Cluster File System for Private Cloud Storage Kai Yu Oracle Solutions Engineering Dell Inc About Author Kai Yu, Senior Principal Architect, Dell Database Engineering 21 years live

More information

BEAWebLogic. Server. Automatic and Manual Service-level Migration

BEAWebLogic. Server. Automatic and Manual Service-level Migration BEAWebLogic Server Automatic and Manual Service-level Migration Version 10.3 Technical Preview Revised: March 2007 Service-Level Migration New in WebLogic Server 10.3: Automatic Migration of Messaging/JMS-Related

More information

RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017

RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017 RAC Database on Oracle Ravello Cloud Service O R A C L E W H I T E P A P E R A U G U S T 2017 Oracle Ravello is an overlay cloud that enables enterprises to run their VMware and KVM applications with data-center-like

More information

Oracle Real Application Clusters Handbook

Oracle Real Application Clusters Handbook ORACLE Oracle Press Oracle Database 11 g Oracle Real Application Clusters Handbook Second Edition K Copalakrishnan Mc Gnaw Hill McGraw-Hill New York Chicago San Francisco Lisbon London Madrid Mexico City

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

Symantec Cluster Server 6.1 Agent for Oracle Installation and Configuration Guide - Solaris

Symantec Cluster Server 6.1 Agent for Oracle Installation and Configuration Guide - Solaris Symantec Cluster Server 6.1 Agent for Oracle Installation and Configuration Guide - Solaris January 2014 Symamtec Cluster Server Agent for Oracle Installation and Configuration Guide The software described

More information

Question No : 1 Which three types of patches and upgrades are supported for Oracle Grid Infrastructure 12c? A. in-place upgrades using the Oracle Univ

Question No : 1 Which three types of patches and upgrades are supported for Oracle Grid Infrastructure 12c? A. in-place upgrades using the Oracle Univ s@lm@n Oracle Exam 1z0-068 Oracle Database 12c: RAC and Grid Infrastructure Administration Version: 7.0 [ Total Questions: 91 ] Question No : 1 Which three types of patches and upgrades are supported for

More information

OEM Provisioning An Introduction

OEM Provisioning An Introduction OEM Provisioning An Introduction Rob Zoeteweij 09-07-2009 1 Agenda Introduction Concepts Framework Break Out of the Box Q & A 09-07-2009 2 Agenda Introduction Concepts Framework Break Out of the Box Q

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

ST0-12W Veritas Cluster Server 5 for Windows (STS)

ST0-12W Veritas Cluster Server 5 for Windows (STS) ST0-12W Veritas Cluster Server 5 for Windows (STS) Version 4.1 Topic 1, Volume A QUESTION NO: 1 Which Veritas Cluster Server component corresponds to hardware or software components of an application service?

More information

1Z Oracle. Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration

1Z Oracle. Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration Oracle 1Z0-058 Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-058 Creating an Oracle RAC Database

More information

Symantec Cluster Server 6.1 Agent for Oracle Installation and Configuration Guide - AIX

Symantec Cluster Server 6.1 Agent for Oracle Installation and Configuration Guide - AIX Symantec Cluster Server 6.1 Agent for Oracle Installation and Configuration Guide - AIX January 2014 Symantec Cluster Server Agent for Oracle Installation and Configuration Guide The software described

More information

Author A.Kishore

Author A.Kishore Enable AutoConfig on Applications Database Tier Steps to Perform On All Oracle RAC Nodes 1> Execute $AD_TOP/bin/admkappsutil.pl on the applications tier to generate an appsutil.zip file for the database

More information

Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard

Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard Protect production systems while leveraging standby computing power ORACLE WHITE PAPER SEPTEMBER 2017 Introduction

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

Relius Administration Version 19.1 Upgrade Installation and Configuration. October 28, 2014

Relius Administration Version 19.1 Upgrade Installation and Configuration. October 28, 2014 Relius Administration Version 19.1 Upgrade Installation and Configuration October 28, 2014 Table Of Contents Section Subject 1 Overview 2 Installation and Environment Considerations 3 Performing the Relius

More information

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in AWS

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in AWS FlashGrid Provisioning and Maintenance Guide for Oracle RAC in AWS rev. 18.08-2018.09.01 2016-2018 FlashGrid Inc. Table of Contents 1 Introduction... 3 2 Compatibility... 3 3 Getting Access to FlashGrid

More information

IBM C IBM Security Guardium V10.0 Administration.

IBM C IBM Security Guardium V10.0 Administration. IBM C2150-606 IBM Security Guardium V10.0 Administration http://killexams.com/exam-detail/c2150-606 QUESTION: 46 A Guardium administrator needs to monitor changes to the Oracle configuration file on a

More information

Maximum Availability Architecture

Maximum Availability Architecture Deploying an Oracle PeopleSoft Maximum Availability Architecture Oracle Maximum Availability Architecture White Paper February 2011 Maximum Availability Architecture Oracle Best Practices For High Availability

More information

Maintaining an Efficient Network

Maintaining an Efficient Network CHAPTER 5 This chapter contains the following information to help you maintain an efficient network: 5.1 How Do I Manage the Database? 5.2 How Do I Monitor the Network? 5.3 How Do I Modify the Network?

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

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide Veritas Cluster Server Agent for Oracle Installation and Configuration Guide Linux 6.0 November 2011 Veritas Cluster Server Agent for Oracle Installation and Configuration Guide The software described

More information

Installation Guide Release for Microsoft Windows

Installation Guide Release for Microsoft Windows [1]Oracle Fail Safe Installation Guide Release 4.1.1 for Microsoft Windows E57046-01 January 2015 Oracle Fail Safe Installation Guide, Release 4.1.1 for Microsoft Windows E57046-01 Copyright 1999, 2015,

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability MAA / Data Guard 10g Release 2 Setup Guide Creating a RAC Logical Standby for a RAC Primary Oracle Maximum Availability Architecture White Paper May 2006 Maximum Availability Architecture Oracle Best Practices

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

High Availability for Oracle 9i Using Double-Take

High Availability for Oracle 9i Using Double-Take High Availability for Oracle 9i Using Double-Take High Availability for Oracle 9i Using Double-Take Revision 2.0.0 published July 2003 NSI and Double-Take are registered trademarks of Network Specialists,

More information

How To Make Databases on Linux on System z Highly Available

How To Make Databases on Linux on System z Highly Available How To Make Databases on Linux on System z Highly Available Mike Friesenegger (mikef@suse.com) SUSE Wednesday, August 14, 2013 Session Number 13437 Agenda Clarify the term "Availability" What is High Availability

More information

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in AWS

FlashGrid Provisioning and Maintenance Guide for Oracle RAC in AWS FlashGrid Provisioning and Maintenance Guide for Oracle RAC in AWS rev. 2017-09-09 2016-2017 FlashGrid Inc. Table of Contents 1 Introduction... 3 2 Compatibility... 3 3 Prerequisites... 4 4 Provisioning

More information

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

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

More information

Setting Up Oracle for ISC

Setting Up Oracle for ISC APPENDIXA This appendix describes how to set up an Oracle Database 10g, Enterprise Edition Release 10.2.0.1.0-64 bit Production server that works with Cisco IP Solution Center (ISC). This appendix is written

More information

Oracle Database 10g Linux Deployment Guide Version 2.0

Oracle Database 10g Linux Deployment Guide Version 2.0 Dell PowerEdge Systems Oracle Database 10g Linux Deployment Guide Version 2.0 www.dell.com support.dell.com Notes and Notices NOTE: A NOTE indicates important information that helps you make better use

More information

CHAPTER. Upgrading to Oracle Database 11g

CHAPTER. Upgrading to Oracle Database 11g CHAPTER 2 Upgrading to Oracle Database 11g 49 50 Oracle Database 11g DBA Handbook I f you have previously installed an earlier version of the Oracle database server, you can upgrade your database to Oracle

More information

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 GoldenGate Best Practices: Configuring Oracle GoldenGate with Oracle Grid Infrastructure Bundled Agents (XAG)

Oracle GoldenGate Best Practices: Configuring Oracle GoldenGate with Oracle Grid Infrastructure Bundled Agents (XAG) An Oracle White Paper September 2012 Oracle GoldenGate Best Practices: Configuring Oracle GoldenGate with Oracle Grid Infrastructure Bundled Agents (XAG) EXECUTIVE OVERVIEW... 4 INTRODUCTION... 4 PREREQUISITES

More information

Version 16.1 Upgrade Installation and Configuration. July 5, 2011

Version 16.1 Upgrade Installation and Configuration. July 5, 2011 Version 16.1 Upgrade Installation and Configuration July 5, 2011 Table Of Contents Section Subject 1 Overview 2 Installation and Environment Considerations 3 Performing the Relius Administration 16.1 Upgrade

More information

Oracle Rac One Node 11gR2 DOAG November Bernhard de Cock Buning

Oracle Rac One Node 11gR2 DOAG November Bernhard de Cock Buning Oracle Rac One Node 11gR2 DOAG November 2012 Bernhard de Cock Buning Introduce myself Bernhard de Cock Buning Working as independent Consultant/Member of GRID- IT Area of aaenbon: HA/RAC/ASM/CRS/MAA 16

More information

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide - Linux

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide - Linux Veritas Cluster Server 6.0.4 Agent for Oracle Installation and Configuration Guide - Linux October 2013 Veritas Cluster Server Agent for Oracle Installation and Configuration Guide The software described

More information

Genesys Info Mart. DAP Options

Genesys Info Mart. DAP Options Genesys Info Mart DAP Options 12/7/2017 DAP Options gim-etl Section agg-jdbc-url default-schema geo-location jdbc-host jdbc-port jdbc-sid jdbc-url role Use this configuration section to set Genesys Info

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

Rob Zoeteweij Zoeteweij Consulting

Rob Zoeteweij Zoeteweij Consulting Rob Zoeteweij Zoeteweij Consulting Is pretty technical Contains quite some slides Shows you: Why and how? Starts right now 2 Introduction Speaker Provisioning and Automated Patching Pack Use Case Out of

More information

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide

Veritas Cluster Server Agent for Oracle Installation and Configuration Guide Veritas Cluster Server Agent for Oracle Installation and Configuration Guide HP-UX 11i v3 5.2 Veritas Cluster Server Agent for Oracle Installation and Configuration Guide The software described in this

More information

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

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

More information

Oracle Clusterware 12c Release 2 Technical Overview O R A C L E W H I T E P A P E R M A R C H

Oracle Clusterware 12c Release 2 Technical Overview O R A C L E W H I T E P A P E R M A R C H Oracle Clusterware 12c Release 2 Technical Overview O R A C L E W H I T E P A P E R M A R C H 2 0 1 7 Table of Contents Introduction 1 Cluster Domains 2 Standalone Cluster 2 Cluster Domains 2 Node Weighting

More information

Cluster Server Generic Application Agent Configuration Guide - AIX, Linux, Solaris

Cluster Server Generic Application Agent Configuration Guide - AIX, Linux, Solaris Cluster Server 7.3.1 Generic Application Agent Configuration Guide - AIX, Linux, Solaris Last updated: 2017-11-04 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and

More information

Oracle Grid Infrastructure

Oracle Grid Infrastructure Oracle Grid Infrastructure Installation Guide 11g Release 2 (11.2) for IBM AIX Based Systems E10814-03 April 2010 Oracle Grid Infrastructure Installation Guide, 11g Release 2 (11.2) for IBM AIX Based Systems

More information

Oracle Restart and FSFO in Cloud

Oracle Restart and FSFO in Cloud Oracle and FSFO in Cloud 0 I. Background II. Core Technology HA Oracle Oracle ADG Oracle FSFO III. and FSFO in Cloud IV. Issues V. Non Stop Cloud Active Data Center Agenda 1 How to build Oracle in the

More information