Make OEM Sing and Dance with EM Command Line Interface

Size: px
Start display at page:

Download "Make OEM Sing and Dance with EM Command Line Interface"

Transcription

1 Make OEM Sing and Dance with EM Command Line Interface

2 Oracle Technologist / DBA IOUG Volunteer SELECT Magazine Editorial Board Collaborate Conference Committee Blog: Contact: ray.smith@pgn.com

3 Setting Expectations Machine sounds and physical motion are not covered Working title: Doing the Java Polka This is a shell scripting session Enterprise Manager Command Line Interface Command line training Script functions and function libraries

4 Agenda Key terms, concepts, and architecture Step-by-step illustrations How to install EMCLI

5 OEM 12c Cloud Control OEM 12c is an entirely new product WebLogic look and feel Oracle scaleability OEM 12c installation Five OUI screens Integrated installation of OEM and WLS

6

7

8

9 EMCLI Architecture OMS is J2EE domain in WLS server Java application EMCLI is a Java application on the client side EMCLI verbs are Java plug-in extensions EMCLI OMS extension is preinstalled As a console page in the OMS Commands execute as if executed locally

10 Oracle Enterprise Manager Command Line Interface 12c Release 1 ( ) E

11 Operational Verbs

12 Administrator Verbs

13 Targets & Blackout Verbs

14 What's my target called? Target name may be fully-qualified (or not) May also be upper or lower case You need to match the repository name exactly Ask the repository for 1. Target of type oracle_database 2. Grep for your SID in its name 3. Then cut it down to just the true name

15

16 Statement Syntax Purpose emcli get_targets Lists all targets emcli get_targets -alerts emcli get_targets -targets="oracle_database Lists targets with Critical and Warning columns Lists all oracle_database targets emcli get_targets -targets="%oracle%" emcli get_targets -targets="databa%:%oracle%" Lists all targets whose type contains the string oracle Applies wildcards to list targets whose name starts with databa% and type contains %oracle% emcli get_targets -targets="database3:oracle_database" -alerts Shows status and alert information on the Oracle database named database3

17 Output Formats Named formats format="name:pretty" prints the output table in a readable format not intended to be parsed by scripts. format="name:script" sets the default column separator to a tab and the default row separator to a newline. The column and row separator strings can be specified to change these defaults. format="name:csv" sets the column separator to a comma and the row separator to a newline. User-defined formats format=column_separator:"column_sep_string" column-separates the Verb output by <column_sep_string>. Rows are separated by the newline character. row_separator:"row_sep_string" row-separates the Verb output by <row_sep_string>. Rows are separated by the tab character.

18

19 Extract the Nugget

20 Industrial Strength

21 Portable Strength

22 Call the Function by Name

23 Cloud computing is about scalability Embrace scalable processes Never customize a script for a specific database Reuse code whenever possible Make the machines do the work Take it to the next level

24 Questions emcli get_answers -accuracy= Questionable -specificity= Vague

25 Power vs Pretty 12c user interface is clear and easy to use Customize to your needs Favorites What about.. Ad hoc or scheduled blackouts Target maintenance Server-side commands

26

27

28

29

30

31

32 Blackout Scripts * * * /scripts/oem/create_blackout.sh gold * * * /scripts/refresh/restore_training_baseline.sh gold * * * /scripts/oem/end_blackout.sh gold Handy for scheduled events Refresh training database from baseline Cold backups Convenient for manual activities Save a trip to the browser

33

34 Building a Blackout Command Required fields Name of the blackout Targets Schedule Reason

35

36

37

38

39

40

41

42

43

44

45 Questions emcli get_answers -accuracy= Questionable -specificity= Vague

46 EM Administrator Maintenance Situation You ve added an OEM training database and targets Trainer wants to change the accounts weekly Requirements Delete the old users with a special role Create new ones just like the old ones Do it between 5:00 Friday and 9:00 Monday

47 3 mouse clicks

48 7 mouse clicks

49 2 mouse clicks

50 2 mouse clicks

51 1 mouse click

52 15 mouse clicks

53

54

55

56 Non-oracle HA Target Monitoring Situation Veritas Cluster Services (VCS) used for high availability Need a fail-over solution Requirements No loss in OEM monitoring Built into HA system fail-over procedures

57 Integration Example: Monitoring HA Targets OEM requires static agent installation Physical host or VM Agents do not fail over Target monitoring can be reassigned between agents Authorize another agent Transfer responsibility

58

59

60 Multiple Data Sources EMCLI tasks 1. Get monitored target list EMCTL tasks 1. List targets associated with the local agent Veritas/HA system tasks 1. Discover resources in the fail-over group

61 Aren't all targets tracked by OEM?

62 Don't I already know the agent name? >emctl config agent gettargets [agent12g1_1_newhost, oracle_home] [LSNRORCLA_vcshost.corp.dom, oracle_listener] [OraDb11g_home1_2_newhost, oracle_home] [ORCLA.WORLD, oracle_database] [newhost.corp.dom, host] [newhost.corp.dom:3872, oracle_emd]

63 To : From statement called $AGENT HAGROUP from the calling Veritas script OLD_NODE=`hastatus -summary grep ONLINE grep ${HAGROUP}` NEW_NODE=`hastatus -summary grep OFFLINE grep ${HAGROUP}` OLD_EMD=`emcli get_targets grep ${OLD_NODE} grep oracle_emd` NEW_EMD=`emcli get_targets grep ${NEW_NODE} grep oracle_emd` AGENT=`echo "-src_agent="${old_emd}" -dest_agent="${new_emd}""`

64 To / From statement called $AGENT HAGROUP passed-in from Veritas OLD_NODE=`hastatus -summary grep ONLINE grep ${HAGROUP}` NEW_NODE=`hastatus -summary grep OFFLINE grep ${HAGROUP}` OLD_EMD=`emcli get_targets grep ${OLD_NODE} grep oracle_emd` NEW_EMD=`emcli get_targets grep ${NEW_NODE} grep oracle_emd` AGENT=`echo "-src_agent="${old_emd}" -dest_agent="${new_emd}""`

65 Populate Target Lists emctl config agent listtargets grep oracle_database >${EMCTL_DB} emctl config agent listtargets grep oracle_listener >${EMCTL_LSNR} emcli get_targets grep oracle_database >${EMCLI_DB} emcli get_targets grep oracle_listener >${EMCLI_LSNR} hares -display -type Oracle grep ${HAGROUP} >${VCS_DATABASES} hares -display -type Netlsnr grep ${HAGROUP} >${VCS_LISTENERS}

66 = = $MOVING_DATABASES $MOVING_LISTENERS For monitored database targets in the emcli list from OEM repository The local emagent reports it through emctl And if the database is 'resource' in this VCS group Create an argfile Do the same thing for listeners

67 Common string values: AGENT=`echo "-src_agent="${old_emd}" -dest_agent="${new_emd}""` TARGET=`echo "-target_name=\"${thisitem}\" -target_type=\"oracle_database\""` for thisitem in `cat ${MOVING_DATABASES}`; do TARGET=`echo "-target_name=\"${thisitem}\" -target_type=\"oracle_database\""` echo "set_standby_agent ${AGENT} ${TARGET}" >>${ARGFILE} echo "relocate_targets ${AGENT} ${TARGET} -copy_from_src -force=yes" >>${ARGFILE} done

68 Argfile: Database target commands set_standby_agent -src_agent="oldhost.com:3872" \ -dest_agent="newhost.com:3872" \ -target_name="orcla" -target_type="oracle_database"; relocate_targets -src_agent="oldhost.com:3872" \ -dest_agent="newhost.com:3872" \ -target_name="orcla" -target_type="oracle_database" -copy_from_src -force=yes;

69 Argfile: Listener target commands set_standby_agent -src_agent="oldhost.com:3872" \ -dest_agent="newhost.com:3872" \ -target_name="lsnrorcla" \ -target_type="oracle_listener"; relocate_targets -src_agent="oldhost.com:3872" \ -dest_agent="newhost.com:3872" \ -target_name="lsnrorcla" -target_type="oracle_listener"-copy_from_src;

70 Run-time emcli argfile ${ARGFILE} echo "These targets are now tracked by the agent ${NEW_EMD}: " emctl config agent listtargets

71 EMCLI execution results: Success Moved all targets from oldhost.corp.dom:3872 to newhost.corp.dom:3872 Success Moved all targets from oldhost.corp.dom:3872 to newhost.corp.dom:3872 These targets are now tracked by the other agent: [agent12g1_1_newhost, oracle_home] [LSNRORCLA_vcshost.corp.dom, oracle_listener] [OraDb11g_home1_2_newhost, oracle_home] [ORCLA.WORLD, oracle_database] [newhost.corp.dom, host] [newhost.corp.dom:3872, oracle_emd]

72 Bottom Line EMCLI is another tool in your toolkit Simple, predictable, powerful & quick EMCLI isn't always the best tool When emctl does the job -- use emctl "Any tool can be the right tool"

73 Questions emcli get_answers -accuracy= Questionable -specificity= Vague

74 java -jar emclikit.jar client -install_dir=<emcli client dir> Installing EMCLI EMCLI is not pre-installed on your host targets Install emcli from emclikit.jar 12c deploys agents from OMS Leverage that capability Push to standard agent location Install and configure EMCLI during agent deployment Prerequisite: Jar file available on new host

75

76

77

78

79

80

81

82

83

84 SAVE THE DATE! COLLABORATE 13 April 7-11, 2013 Colorado Convention Center Denver, Colorado

Deep Dive. Cloud Control 12c. Oracle Enterprise Manager ORACLG. Oracle Press. Michael New Edward Whalen Matthew Burke. London Madrid Mexico City Milan

Deep Dive. Cloud Control 12c. Oracle Enterprise Manager ORACLG. Oracle Press. Michael New Edward Whalen Matthew Burke. London Madrid Mexico City Milan ORACLG Oracle Press Oracle Enterprise Manager Cloud Control 12c Deep Dive Michael New Edward Whalen Matthew Burke Mc Graw Hill Education New York Chicago San Francisco Athens London Madrid Mexico City

More information

Enterprise Manager Cloud Control 12c Release 4 ( )

Enterprise Manager Cloud Control 12c Release 4 ( ) Enterprise Manager Cloud Control 12c Release 4 (12.1.0.4) Covers: a) Install b) Upgrade c) Agent Deployment d) Plug-in Deployment e) OMS Patching - Akanksha Sheoran Kaler Safe Harbor Statement The following

More information

plugin deployment guide

plugin deployment guide plugin deployment guide July 2016 This document details the steps required when deploying the mongodb monitoring plug-in into Oracle Enterprise Manager 12c. The process is identical for Oracle EM 13c.

More information

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c

Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c An Oracle White Paper July, 2014 Oracle Best Practices for Managing Fusion Application: Discovery of Fusion Instance in Enterprise Manager Cloud Control 12c Executive Overview... 2 Applicable versions

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

OEM12c Overview for DBA

OEM12c Overview for DBA OEM12c Overview for DBA Francisco Munoz Alvarez LAOUC, CLOUG & NZOUG President IOUC LA Spokesperson 8/9/10g/11g OCP, RAC OCE, AS OCA, E-Business OCP, SQL/PLSQL OCA, Oracle 7 OCM Oracle 7, 11GR2 & OVM 3.1

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

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Apache Tomcat 13.2.1.0 E73485-01 June 2016 Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Apache Tomcat,

More information

Enterprise Manager Cloud Control 12c Release1 ( ) Installation Akanksha Sheoran Product Management

Enterprise Manager Cloud Control 12c Release1 ( ) Installation Akanksha Sheoran Product Management Business-DrivenIT Management Enterprise Manager Cloud Control 12c Release1 (12.1.0.1) Installation Akanksha Sheoran Product Management Agenda Enterprise Manager 12.1 Binaries Where to get it from? Verify

More information

Configuring and Managing a Private Cloud with Oracle Enterprise Manager

Configuring and Managing a Private Cloud with Oracle Enterprise Manager Configuring and Managing a Private Cloud with Oracle Enterprise Manager Oracle OpenWorld 2011 Session #06980, Tuesday, 5:30 pm Kai Yu Dell Inc. Madhup Gulati, Oracle Corporation Akanksha Sheoran, Oracle

More information

Microsoft Active Directory Plug-in User s Guide Release

Microsoft Active Directory Plug-in User s Guide Release [1]Oracle Enterprise Manager Microsoft Active Directory Plug-in User s Guide Release 13.1.0.1.0 E66401-01 December 2015 Oracle Enterprise Manager Microsoft Active Directory Plug-in User's Guide, Release

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

System Monitoring Plug-in User s Guide Release for Audit Vault and Database Firewall

System Monitoring Plug-in User s Guide Release for Audit Vault and Database Firewall [1]Oracle Enterprise Manager System Monitoring Plug-in User s Guide Release 13.1.0.1.0 for Audit Vault and Database Firewall E68902-01 December 2015 Oracle Enterprise Manager System Monitoring Plug-in

More information

Welcome to the Oracle Enterprise Manager

Welcome to the Oracle Enterprise Manager Welcome to the Oracle Enterprise Manager Technical Webcast Series Please ensure that you are connected to the audio portion of this event which is available by dialing: Dial-in in US/Canada : ( 888 ) 794-4691

More information

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips IOUG Collaborate 12, Virtualization Boot Camp Session #328, Monday April 23 rd, 3:45-4:45pm Kai Yu Oracle Solutions Engineering Lab Dell

More information

Microsoft Internet Information Services (IIS) Plug-in User s Guide Release

Microsoft Internet Information Services (IIS) Plug-in User s Guide Release [1]Oracle Enterprise Manager Microsoft Internet Information Services (IIS) Plug-in User s Guide Release 13.1.0.1.0 E66400-01 December 2015 Oracle Enterprise Manager Microsoft Internet Information Services

More information

Manual Backup Sql Server Express 2005 Automatic

Manual Backup Sql Server Express 2005 Automatic Manual Backup Sql Server Express 2005 Automatic Have you ever attempted to setup an automated backup of your SQL Server Express database server, only to discover that the handy job scheduler. Any Kingdom

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

Cloud Control Getting Started Guide 13c Release 2

Cloud Control Getting Started Guide 13c Release 2 [1]Oracle Enterprise Manager Cloud Control Getting Started Guide 13c Release 2 E74868-02 September 2016 Oracle Enterprise Manager Cloud Control Getting Started Guide, 13c Release 2 E74868-02 Copyright

More information

Manageability. Enterprise Manager 12c Cloud Control: What s Changed, What s New. Introduction to Oracle Enterprise Manager Command Line Interface

Manageability. Enterprise Manager 12c Cloud Control: What s Changed, What s New. Introduction to Oracle Enterprise Manager Command Line Interface Volume 20 Number 1 First Quarter 2013 w w w. i o u g. o r g Fo r t h e C o m p l e t e Te ch n o l o g y & D a t a b a s e Pro f e s s i o n a l Manageability Enterprise Manager 12c Cloud Control: What

More information

Oracle Enterprise Manager. 1 Introduction. System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 (

Oracle Enterprise Manager. 1 Introduction. System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 ( Oracle Enterprise Manager System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 (11.1.3.0.0) E18950-03 November 2011 This document provides describes the System Monitoring

More information

NoCOUG. Extending Oracle 10g Grid Control Using Management Plug-Ins Randy Arseneau VP, Product Marketing BEZ Systems, Inc.

NoCOUG. Extending Oracle 10g Grid Control Using Management Plug-Ins Randy Arseneau VP, Product Marketing BEZ Systems, Inc. Extending Oracle 10g Grid Control Using Management Plug-Ins NoCOUG 08.17.06 Randy Arseneau VP, Product Marketing BEZ Systems, Inc. AGENDA OEM 10g Overview OEM 10g Grid Control Data Collection Options for

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft BizTalk Server Release 12.1.0.1.0 E28546-04 February 2014 This document provides a brief description about the Microsoft

More information

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6 for Office Contents 2 Contents Cloud Help for Community Managers...3 Release Notes... 4 System Requirements... 5 Administering Jive for Office... 6 Getting Set Up...6 Installing the Extended API JAR File...6

More information

Oracle 11g Database Replay Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc.

Oracle 11g Database Replay  Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc. ORACLE 11G DATABASE REPLAY : CAPTURE WORKLOAD PROCESS Inderpal S. Johal, Data Softech Inc. INTRODUCTION In this document I will provide details as how you can use Oracle 11g database replay feature. This

More information

Acronis Data Cloud plugin for ConnectWise Automate

Acronis Data Cloud plugin for ConnectWise Automate Acronis Data Cloud plugin for ConnectWise Automate USER S GUIDE Revision: 17.01.2018 Table of contents 1 Introduction...3 2 What s new in Update 3...3 3 What s new in Update 2...3 4 What s new in Update

More information

Question No : 1 In Oracle Enterprise Manager Ops Center, what does custom discovery perform?

Question No : 1 In Oracle Enterprise Manager Ops Center, what does custom discovery perform? Volume: 68 Questions Question No : 1 In Oracle Enterprise Manager Ops Center, what does custom discovery perform? A. Service tag discovery only B. Protocol-based discovery only C. Agent installation D.

More information

Securing an Oracle Private Cloud using Oracle Directory Suite

Securing an Oracle Private Cloud using Oracle Directory Suite Securing an Oracle Private Cloud using Oracle Directory Suite Prepared by: Eric Mader, Zirous, Inc. @zirous_eric Session ID: 266 Agenda Oracle Private Clouds and Oracle Enterprise Manager 13c Oracle Directory

More information

Microsoft.NET Framework Plug-in User s Guide Release

Microsoft.NET Framework Plug-in User s Guide Release [1]Oracle Enterprise Manager Microsoft.NET Framework Plug-in User s Guide Release 13.1.0.1.0 E66402-01 December 2015 Oracle Enterprise Manager Microsoft.NET Framework Plug-in User's Guide, Release 13.1.0.1.0

More information

An Oracle White Paper May Operational Considerations and Troubleshooting. Oracle Enterprise Manager 12c

An Oracle White Paper May Operational Considerations and Troubleshooting. Oracle Enterprise Manager 12c An Oracle White Paper May 2013 Operational Considerations and Troubleshooting Oracle Enterprise Manager 12c Executive Overview... 1 Introduction... 1 Infrastructure Components... 2 Diagnostic Tools...

More information

OEM(Oracle Enterpise Manager):

OEM(Oracle Enterpise Manager): OEM(Oracle Enterpise Manager): Oracle Enterprise Manager is Oracle system management tool through which you can: Administer,diagnose and tune mul:ple databases. Distribute so>ware to mul:pe servers and

More information

Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud

Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud Deploy Oracle Spatial and Graph Map Visualization Component to Oracle Cloud Overview The Map Visualization Component is a development toolkit packaged with Oracle Spatial and Graph for incorporating interactive

More information

Enterprise Manager Cloud Control 12c Release2 ( ) Installation

Enterprise Manager Cloud Control 12c Release2 ( ) Installation Enterprise Manager Cloud Control 12c Release2 (12.1.0.2) Installation 1 Agenda Facts about EM 12.1.0.2 EM12.1.0.2 Binaries New in EM 12.1.0.2 Install Installation Types and Methods Step by step demo Log

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Oracle GoldenGate System Monitoring Plug-in Installation Guide Release 13c (13.1.1.0.0) E68921-01 February 2016 This document provides a brief description of the Enterprise Manager

More information

Enterprise Manager: Scalable Oracle Management

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

More information

USING RPMS TO AUTOMAGICALLY INSTALL ORACLE AGENTS TO EM12C

USING RPMS TO AUTOMAGICALLY INSTALL ORACLE AGENTS TO EM12C USING RPMS TO AUTOMAGICALLY INSTALL ORACLE AGENTS TO EM12C Mike Gangler Senior Database Specialist / Team Lead Secure-24 - @mjgangler Mjgangler@yahoo.com ABOUT MIKE GANGLER Oracle ACE DBA for over 28

More information

EM 12c: Broadest, Most Complete Range of Enterprise Services

EM 12c: Broadest, Most Complete Range of Enterprise Services Enterprise Manager 12c Cloud Taxonomy EM Product Management 1 Copyright 2011, Oracle and/or its affiliates. All rights EM 12c: Broadest, Most Complete Range of Enterprise Services Self-Service Application/

More information

Acronis Data Cloud plugin for ConnectWise Automate

Acronis Data Cloud plugin for ConnectWise Automate Acronis Data Cloud plugin for ConnectWise Automate USER'S GUIDE Revision: 24.08.2018 Table of contents 1 Introduction...3 2 What's new in Update 4...3 3 What's new in Update 3...3 4 What's new in Update

More information

Oracle WebLogic Devcast Series: JMX for DevOps. Dr. Frank Munz ORACLE PRODUCT LOGO

Oracle WebLogic Devcast Series: JMX for DevOps. Dr. Frank Munz ORACLE PRODUCT LOGO Oracle WebLogic Devcast Series: JMX for DevOps Dr. Frank Munz g of the Year,, Cloud Oracle Technologist ORACLE PRODUCT LOGO 1 The following is intended to outline our general product direction. It is intended

More information

8.0 Help for Community Managers Release Notes System Requirements Administering Jive for Office... 6

8.0 Help for Community Managers Release Notes System Requirements Administering Jive for Office... 6 for Office Contents 2 Contents 8.0 Help for Community Managers... 3 Release Notes... 4 System Requirements... 5 Administering Jive for Office... 6 Getting Set Up...6 Installing the Extended API JAR File...6

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Bundle Patch 1 Application Guide 12c Release 1 (12.1.0.1) E35229-03 August 2012 Oracle Enterprise Manager Bundle Patch 1 Application Guide 12c Release 1 (12.1.0.1) E35229-03 Copyright

More information

Using RPMS to Automagically to install Oracle Agents to EM12C

Using RPMS to Automagically to install Oracle Agents to EM12C Using RPMS to Automagically to install Oracle Agents to EM12C Session ID: 1201 Palm B Monday, April 11 12 12:30pm Prepared by: Mike Gangler Senior Database Specialist Secure-24 - @mjgangler Mjgangler@yahoo.com

More information

VRT-202 Veritas Cluster Server for UNIX/Linux Administration

VRT-202 Veritas Cluster Server for UNIX/Linux Administration VRT-202 Veritas Cluster Server for UNIX/Linux Administration COURSE DESCRIPTION The VERITAS Cluster Server course is designed for the IT professional tasked with installing, configuring, and maintaining

More information

Oracle Access Manager Integration Oracle FLEXCUBE Payments Release [Feb] [2018]

Oracle Access Manager Integration Oracle FLEXCUBE Payments Release [Feb] [2018] Oracle Access Manager Integration Oracle FLEXCUBE Payments Release 14.0.0.0.0 [Feb] [2018] Table of Contents Oracle Access Manager Integration 1. PREFACE... 1-1 1.1 INTRODUCTION... 1-1 1.2 AUDIENCE...

More information

Oracle Enterprise Manager 12c

Oracle Enterprise Manager 12c Oracle Enterprise Manager 12c CON8243 - Enterprise Manager 12c Security Cookbook: Best Practices for Large Datacenters Maureen Byrne Product Management, Oracle Marleen Gebraad, Rabobank Nagaraj Krishnappa

More information

Overview of the Plug-In. Versions Supported. Deploying the Plug-In

Overview of the Plug-In. Versions Supported. Deploying the Plug-In Oracle Enterprise Manager System Monitoring Plug-In Installation Guide for Exadata Avocent MergePoint Unity Switch Release 11.1.0.2.0 E20086-03 March 2011 Overview of the Plug-In The Avocent MergePoint

More information

Peak ETA Developers Guide

Peak ETA Developers Guide Oracle Business Intelligence 11g Peak ETA Developers Guide Antony Heljula / Paul Oprea January 2013 Peak Indicators Limited 2 Peak ETA Developers Guide Agenda About the Peak ETA Console About the Peak

More information

VERITAS CLUSTER SERVER

VERITAS CLUSTER SERVER VERITAS CLUSTER SERVER COURSE DESCRIPTION 100% JOB GUARANTEE The Veritas Cluster Server course is designed for the IT professional tasked with installing, configuring, and maintaining VCS clusters. This

More information

JD Edwards EnterpriseOne

JD Edwards EnterpriseOne JD Edwards EnterpriseOne Application Pack for Oracle Enterprise Manager Cloud Control Implementation Guide Release 8.98 Update 4 E22498-01 November 2011 JD Edwards EnterpriseOne Application Pack for Oracle

More information

Infrastructure Navigator User's Guide

Infrastructure Navigator User's Guide vcenter Infrastructure Navigator 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more

More information

Oracle Access Manager Oracle FLEXCUBE Universal Banking Release [May] [2017]

Oracle Access Manager Oracle FLEXCUBE Universal Banking Release [May] [2017] Oracle Access Manager Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] Table of Contents 1. INTRODUCTION... 1-1 2. BACKGROUND AND PREREQUISITES... 2-1 2.1 PRE-REQUISITES... 2-1 2.1.1 Software

More information

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

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

More information

Oracle Enterprise Manager 12c IBM DB2 Database Plug-in

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

More information

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Saar Maoz, RACPack RAC Development, Oracle Kai Yu, Oracle Solutions Engineering, Dell Inc About Authors Saar Maoz Consulting Software

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

Masterclass: WebLogic Server for OAS Administrators

Masterclass: WebLogic Server for OAS Administrators Masterclass: WebLogic Server Simon Haslam Veriton Limited Veriton Oracle Partner, established 13 years Demanding web & call-centre applications Oracle Application Server & WebLogic Server (clusters, JEE,

More information

Page 1. Oracle9i OLAP. Agenda. Mary Rehus Sales Consultant Patrick Larkin Vice President, Oracle Consulting. Oracle Corporation. Business Intelligence

Page 1. Oracle9i OLAP. Agenda. Mary Rehus Sales Consultant Patrick Larkin Vice President, Oracle Consulting. Oracle Corporation. Business Intelligence Oracle9i OLAP A Scalable Web-Base Business Intelligence Platform Mary Rehus Sales Consultant Patrick Larkin Vice President, Oracle Consulting Agenda Business Intelligence Market Oracle9i OLAP Business

More information

High Availability Options for Oracle Database

High Availability Options for Oracle Database High Availability Options for Oracle Database Presentation by Dan Norris Who is Dan? Virgo Scuba Diver (PADI Advanced OW) Over 21, under 35 Oracle DBA & UNIX Admin background Certifiable: OCM, ACE Director,

More information

70-247: Configuring and Deploying a Private Cloud with System Center 2012

70-247: Configuring and Deploying a Private Cloud with System Center 2012 70-247: Configuring and Deploying a Private Cloud with System Center 2012 Module 01 - Understanding the Private Cloud Lesson 1: Understanding the Private Cloud Cloud Comparisons Comparing the Private and

More information

Oracle WebLogic Server 11g: Administration Essentials

Oracle WebLogic Server 11g: Administration Essentials Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials

More information

Toad for Oracle Suite 2017 Functional Matrix

Toad for Oracle Suite 2017 Functional Matrix Toad for Oracle Suite 2017 Functional Matrix Essential Functionality Base Xpert Module (add-on) Developer DBA Runs directly on Windows OS Browse and navigate through objects Create and manipulate database

More information

Overview of the Plug-In. Versions Supported

Overview of the Plug-In. Versions Supported Oracle Enterprise Manager System Monitoring Plug-In Installation Guide for Exadata Power Distribution Unit Release 11.1.0.2.0 E20087-03 March 2011 Overview of the Plug-In This plug-in will be used to monitor

More information

Architecture & Deployment

Architecture & Deployment Architecture & Deployment IBM Connections 5.0 Workshop Author: Paul Godby IBM Ecosystem Development Duration: 30 minutes 2014 IBM Corporation Agenda IBM Connections lications Prerequisite Software Deployment

More information

Oracle Application Express: Administration 1-2

Oracle Application Express: Administration 1-2 Oracle Application Express: Administration 1-2 The suggested course agenda is displayed in the slide. Each lesson, except the Course Overview, will be followed by practice time. Oracle Application Express:

More information

Large-Scale Patch Automation for the Cloud-Generation DBAs

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

More information

USING ENTERPRISE MANAGER TO ACHIEVE GRID AUTOMATION WITH DEPLOYMENT PROCEDURES

USING ENTERPRISE MANAGER TO ACHIEVE GRID AUTOMATION WITH DEPLOYMENT PROCEDURES USING ENTERPRISE MANAGER TO ACHIEVE GRID AUTOMATION WITH DEPLOYMENT PROCEDURES Deployment Procedures are Oracle s latest contribution in automating operations around the grid. This FAQ style technical

More information

Configuration Process Overview

Configuration Process Overview Oracle Big Data Appliance Configuration Worksheets Release 2 (2.2.1) E41242-03 August 2013 The Oracle Big Data Appliance Configuration Worksheets identify the information and decisions required when installing

More information

Fusion Apps Administration: Case Study Utilizing Administration Groups and Target Properties for Efficient Administration

Fusion Apps Administration: Case Study Utilizing Administration Groups and Target Properties for Efficient Administration An Oracle White Paper April, 2014 Fusion Apps Administration: Case Study Utilizing Administration Groups and Target Properties for Efficient Administration Executive Overview... 2 Caveats... 3 Customer

More information

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

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Enterprise Manager 12c Compliance Management Part 1 Overview 2 3 Agenda Compliance Overview Understanding Compliance Results Understanding Compliance Score Calculation Compliance Related Roles and Privileges

More information

Oracle Enterprise Manager 12c Sybase ASE Database Plug-in

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

More information

Upgrading using 1-system upgrade approach (on a different host)

Upgrading using 1-system upgrade approach (on a different host) Upgrading using 1-system upgrade approach (on a different host) This approach enables to install Enterprise Manager Cloud Control on a host different from where the existing Enterprise Manager is running.

More information

Managing Oracle9iAS Forms Services Using Oracle Enterprise Manager. An Oracle White Paper April 2002

Managing Oracle9iAS Forms Services Using Oracle Enterprise Manager. An Oracle White Paper April 2002 Managing Oracle9iAS Forms Services Using Oracle Enterprise Manager An Oracle White Paper April 2002 Managing Oracle9iAS Forms Services Using Oracle Enterprise Manager ABOUT THIS PAPER...3 THE ENTERPRISE

More information

Build Mobile Cloud Apps Effectively Using Oracle Mobile Cloud Services (MCS)

Build Mobile Cloud Apps Effectively Using Oracle Mobile Cloud Services (MCS) Build Mobile Cloud Apps Effectively Using Oracle Mobile Cloud Services (MCS) Presented by: John Jay King Download this paper from: 1 Session Objectives Understand the need for something like Oracle Mobile

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Administration 10g Release 5 (10.2.0.5) E14586-03 December 2009 Oracle Enterprise Manager Administration, 10g Release 5 (10.2.0.5) E14586-03 Copyright 2009, Oracle and/or its

More information

HP Database and Middleware Automation

HP Database and Middleware Automation HP Database and Middleware Automation For Windows Software Version: 10.10 SQL Server Database Refresh User Guide Document Release Date: June 2013 Software Release Date: June 2013 Legal Notices Warranty

More information

Administering WebLogic Server on Java Cloud Service I Ed 1 Coming Soon

Administering WebLogic Server on Java Cloud Service I Ed 1 Coming Soon Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Administering WebLogic Server on Java Cloud Service I Ed 1 Coming Soon Duration: 5 Days What you will learn This Administering WebLogic

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Quick Installation Guide for Oracle Identity Management 11g Release 1 (11.1.1) E10033-01 May 2009 This guide is designed to help you quickly install the most common Oracle Identity

More information

Ralf Durben Business Unit Datenbank. Oracle Corporation

Ralf Durben Business Unit Datenbank. Oracle Corporation Ralf Durben Business Unit Datenbank Oracle Corporation Realize Immediate Value Grid Control Management of all the Oracle Grid components Centrally manage entire enterprise Out-of-box management for all

More information

SAS Enterprise Case Management 2.1. Administrator s Guide

SAS Enterprise Case Management 2.1. Administrator s Guide SAS Enterprise Case Management 2.1 Administrator s Guide The correct bibliographic citation for this manual is as follows: SAS Institute, Inc. 2010. SAS Enterprise Case Management 2.1: Administrator's

More information

DBaaS (Oracle and Open Source)

DBaaS (Oracle and Open Source) DBaaS (Oracle and Open Source) Vess Natchev vess@us.ibm.com Power Cloud Team Leader Systems Lab Services IBM Systems Lab Services Proven IT Infrastructure Expertise 1 Agenda Definition Life Cycle of Database

More information

WhatsConfigured for WhatsUp Gold 2016 User Guide

WhatsConfigured for WhatsUp Gold 2016 User Guide WhatsConfigured for WhatsUp Gold 2016 User Guide Contents Welcome to WhatsConfigured 1 What is WhatsConfigured? 1 Finding more information and updates 1 Sending feedback 2 Deploying WhatsConfigured 3 STEP

More information

DEPLOYING A 3SCALE API GATEWAY ON RED HAT OPENSHIFT

DEPLOYING A 3SCALE API GATEWAY ON RED HAT OPENSHIFT TUTORIAL: DEPLOYING A 3SCALE API GATEWAY ON RED HAT OPENSHIFT This tutorial describes how to deploy a dockerized version of the 3scale API Gateway 1.0 (APIcast) that is packaged for easy installation and

More information

Oracle Enterprise Manager for Exadata Cloud

Oracle Enterprise Manager for Exadata Cloud Oracle Enterprise Manager for Exadata Cloud Implementation, Management, and Monitoring Best Practices O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 7 Disclaimer The following is intended to outline

More information

Oracle NoSQL Database

Oracle NoSQL Database Starting Small and Scaling Out Oracle NoSQL Database 11g Release 2 (11.2.1.2) Oracle White Paper April 2012 Oracle NoSQL Database Oracle NoSQL Database is a highly available, distributed key-value database,

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

More information

Oracle Enterprise Manager 12c/13c - Best Practices in Design and Deployment for High Availability and Disaster Recovery

Oracle Enterprise Manager 12c/13c - Best Practices in Design and Deployment for High Availability and Disaster Recovery Oracle Enterprise Manager 12c/13c - Best Practices in Design and Deployment for High Availability and Disaster Recovery Rao S. Kasinadhuni Vice President and Database Engineer Lead JPMorgan -Modernize

More information

RAC Performance Monitoring and Diagnosis using Oracle Enterprise Manager. Kai Yu Senior System Engineer Dell Oracle Solutions Engineering

RAC Performance Monitoring and Diagnosis using Oracle Enterprise Manager. Kai Yu Senior System Engineer Dell Oracle Solutions Engineering RAC Performance Monitoring and Diagnosis using Oracle Enterprise Manager Kai Yu Senior System Engineer Dell Oracle Solutions Engineering About Author Kai Yu Senior System Engineer, Dell Oracle Solutions

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

More information

Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware. 12c ( )

Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware. 12c ( ) Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware 12c (12.2.1.3) E80584-01 August 2017 Oracle Fusion Middleware Planning an Installation of Oracle Fusion Middleware, 12c (12.2.1.3)

More information

MIDAS Product Suite. Version: QUICK Overview

MIDAS Product Suite. Version: QUICK Overview MIDAS Product Suite Version: 4.4.0 QUICK Overview Overview: This guide here is designed as a small reference which can be put next to the computer keyboard when you are new to MIDAS. The following 12 pages

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

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

Primavera Unifier and Enterprise Manager. Supported Versions of Enterprise Manager. Primavera Unifier Metrics Collected for Enterprise Manager

Primavera Unifier and Enterprise Manager. Supported Versions of Enterprise Manager. Primavera Unifier Metrics Collected for Enterprise Manager Connecting Oracle Enterprise Manager to Primavera Unifier Metrics 15 R2 September 2015 Contents Primavera Unifier and Enterprise Manager... 5 Supported Versions of Enterprise Manager... 5 Primavera Unifier

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Creating Domains Using the Configuration Wizard 11g Release 1 (10.3.4) E14140-04 January 2011 This document describes how to use the Configuration Wizard to create, update, and

More information

CHAPTER. Overview of Cloud Control Architecture

CHAPTER. Overview of Cloud Control Architecture CHAPTER 1 Overview of Cloud Control Architecture 4 Oracle Enterprise Manager Cloud Control 12c Deep Dive Oracle Enterprise Manager Cloud Control 12c (hereafter referred to as Cloud Control, CC, or CC 12c)

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +34916267792 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration platform

More information

Oracle Enterprise Manager. 1 Before You Install. System Monitoring Plug-in for Oracle Unified Directory User's Guide Release 1.0

Oracle Enterprise Manager. 1 Before You Install. System Monitoring Plug-in for Oracle Unified Directory User's Guide Release 1.0 Oracle Enterprise Manager System Monitoring Plug-in for Oracle Unified Directory User's Guide Release 1.0 E24476-01 October 2011 The System Monitoring Plug-In for Oracle Unified Directory extends Oracle

More information

Java Platform, Standard Edition Advanced Management Console User's Guide 2.9

Java Platform, Standard Edition Advanced Management Console User's Guide 2.9 Java Platform, Standard Edition Advanced Management Console User's Guide 2.9 E62444-13 January 2018 Java Platform, Standard Edition Advanced Management Console User's Guide, 2.9 E62444-13 Copyright 2014,

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

Prerequisites for Using Enterprise Manager with Your Primavera Applications

Prerequisites for Using Enterprise Manager with Your Primavera Applications Oracle Enterprise Manager For Oracle Construction and Engineering Configuration Guide for On Premises Version 18 August 2018 Contents Introduction... 5 Prerequisites for Using Enterprise Manager with

More information