Getting Started with Exadata & Smart Scan

Size: px
Start display at page:

Download "Getting Started with Exadata & Smart Scan"

Transcription

1 Getting Started with Exadata & Smart Scan Aman Sharma Aman Sharma

2 Who Am I? Aman Sharma About 12+ years using Oracle Database Oracle ACE Frequent Contributor to OTN Database forum(aman.) Oracle Certified Sun Certified Member - AIOUG,IOUG Member - AIOUG North India Chapter team Twitter * Oracle Blog : * amansharma@aristadba.com Aman Sharma-OTNYatra2015 2

3 What We Shall Talk About Exadata Introduction Exadata Hardware & Network Overview Exadata Software Overview Exadata Key Features Smart Scan Aman Sharma-OTNYatra2015 3

4 A Typical Database Server Setup Aman Sharma-OTNYatra2015 4

5 RAC Database Server Setup Aman Sharma-OTNYatra2015 5

6 So What Can Go Wrong? Aman Sharma-OTNYatra2015 6

7 DBA s Life Can Be Hard! Users/ Developer Manager DBA Aman Sharma-OTNYatra2015 7

8 Say Hello To Exadata Engineered machine catering both OLTP and DSS workloads Platform for Database Cloud Extreme Performance & High Availability Well balanced platform eliminating bottlenecks Robust yet secure & easy to setup and implement Aman Sharma-OTNYatra2015 8

9 Evolution of Exadata Technology Exadata Model Year Storage(TB) Flash(TB) CPU(Cores) Memory(TB) V NIL V X X X Aman Sharma-OTNYatra2015 9

10 Exadata-A Sneak Peak Inside Image courtesy-google Images Aman Sharma-OTNYatra

11 Exadata(X4-2) Available Configurations Aman Sharma-OTNYatra

12 Exadata-Key Features Smart Scan Hybrid Columnar Compression (HCC) Infiniband Network Smart Flash Cache Storage Indexes IORM Aman Sharma-OTNYatra

13 Exadata- Hardware& Network introduction using Quarter RAC Database Server 01 Database Server Port IB1 36 Port IB2 Aman Sharma-OTNYatra

14 Client Access 1GbE-Client Access ILOM Ethernet Switch ILOM Mgmt Access IB3(Spine) Mgmt Access Database Server 01 IB1(Leaf) IB2(Leaf) 10GbE-Client Access Aman Sharma-OTNYatra

15 Exadata-Software Overview DB01 DB02 ORCL1 +ASM1 ORCL2 +ASM2 LIBCELL LIBCELL idb MS RS MS RS MS RS CELLSRV CELLSRV CELLSRV Aman Sharma-OTNYatra

16 Smart(Storage) Scan Smart Scan Hybrid Columnar Compression (HCC) Infiniband Network Smart Flash Cache Storage Indexes IORM Aman Sharma-OTNYatra

17 Smart Scan/Data Offloading Data Offloading makes Exadata magical Offloading is Work is offloaded to the Exadata storage(cells) Not related to just SQL statement execution Going to optimize others operations i.e. Backups also Smart SCAN Is related specifically to SQL statement processing Works for Table/Index Scans, Joins Uses the idb protocol Does NOT work all the time Is NOT an optimizer feature Aman Sharma-OTNYatra

18 Smart Scan-From A Little Closer Smart Scan works for Column Offloading Predicate Offloading Joins(using Bloom Filter) Data access must use Direct-Path Read To have Smart Scan enabled Database must have set CELL_OFFLOAD_PROCESSING=TRUE Disk Group must have set CELL.SMART_SCAN_CAPABLE=TRUE(FALSE) To display Smart Scan in the execution plan, set CELL_OFFLOAD_PLAN_DISPLAY=AUTO/ALWAYS/NEVER Aman Sharma-OTNYatra

19 Smart Scan-When It Doesn t Work On a Clustered table On an Index Organized Table LOB/LONG Column is selected More than 255 columns are referenced in the query No predicate clause or column filtering is used <<partial list>> Aman Sharma-OTNYatra

20 Smart Scan- Example 1 SQL> select count(*) from employees where deptartment = SALES'; COUNT(*) Elapsed: 00:00:02.14 Execution Plan Plan hash value: Id Operation Name Rows Bytes Cost (%CPU) SELECT STATEMENT (1) 1 SORT AGGREGATE 1 7 * 2 TABLE ACCESS STORAGE FULL EMPLOYEES 255K 998K 3136 (1) Predicate Information (identified by operation id): storage( DEPARTMENT"= SALES') filter( DEPARTMENT"= SALES') Aman Sharma-OTNYatra

21 Smart Scan-Going Beyond Execution Plans SQL> SELECT s.name, m.value/1024/1024 MB FROM V$SYSSTAT s, V$MYSTAT m 2 WHERE s.statistic# = m.statistic# AND 3 (s.name LIKE 'physical%total bytes' OR s.name LIKE 'cell phys%' 4 OR s.name LIKE 'cell IO%'); NAME MB physical read total bytes physical write total bytes 0 cell physical IO interconnect bytes cell physical IO bytes saved during optimized file creation 0 cell physical IO bytes saved during optimized RMAN file restore 0 cell physical IO bytes eligible for predicate offload cell physical IO bytes saved by storage index 0 cell physical IO bytes sent directly to DB node to balance CPU 0 cell physical IO interconnect bytes returned by smart scan cell IO uncompressed bytes rows selected. Elapsed: 00:00:00.17 Aman Sharma-OTNYatra

22 Smart Scan-Example 2 SQL> select count(*) from employees where deptartment = SALES'; COUNT(*) Elapsed: 00:00:06.04 Execution Plan Plan hash value: Id Operation Name Rows Bytes Cost (%CPU) SELECT STATEMENT (1) 1 SORT AGGREGATE 1 7 * 2 TABLE ACCESS STORAGE FULL EMPLOYEES 255K 998K 3136 (1) Predicate Information (identified by operation id): storage( DEPARTMENT"= SALES') filter( DEPARTMENT"= SALES') Aman Sharma-OTNYatra

23 But Is Smart Scan Really Helping? SQL> SELECT s.name, m.value/1024/1024 MB FROM V$SYSSTAT s, V$MYSTAT m 2 WHERE s.statistic# = m.statistic# AND 3 (s.name LIKE 'physical%total bytes' OR s.name LIKE 'cell phys%' 4 OR s.name LIKE 'cell IO%'); NAME MB physical read total bytes physical write total bytes 0 cell physical IO interconnect bytes cell physical IO bytes saved during optimized file creation 0 cell physical IO bytes saved during optimized RMAN file restore 0 cell physical IO bytes eligible for predicate offload cell physical IO bytes saved by storage index 0 cell physical IO bytes sent directly to DB node to balance CPU 0 cell physical IO interconnect bytes returned by smart scan cell IO uncompressed bytes rows selected. Elapsed: 00:00:00.17 Aman Sharma-OTNYatra

24 When using Smart Scan, Look For Transactions happening over the buffers thus resulting in dirty buffers Dynamic Sampling Migration of rows or Chained rows Storage Cell Servers CPU s are more busy than DB Servers If the required data is already in the buffer cache Aman Sharma-OTNYatra

25 Smart Scan Related Metrics & Wait Events For Wait Events SELECT DISTINCT event, total_waits, time_waited/100 wait_secs, average_wait/100 avg_wait_secs FROM V$SESSION_EVENT e, V$MYSTAT s WHERE event LIKE 'cell%' AND e.sid = s.sid; For Statistics SELECT s.name, m.value/1024/1024 MB FROM V$SYSSTAT s, V$MYSTAT m WHERE s.statistic# = m.statistic# AND (s.name LIKE 'physical%total bytes' OR s.name LIKE 'cell phys%' OR s.name LIKE 'cell IO%'); Aman Sharma-OTNYatra

26 Exadata-Deployment & Installation Four Step Phase Pre-Installation Uses Oracle Exadata Deployment Assistant(OEDA) Customer side task Installation, Configuration & Deployment Uses OneCommand Oracle Advanced Customer Support (ACS) handles it Additional(Misc.) Configuration For example, deploying EM Cloud Control Customer/ACS Post-Installation Monitoring & maintaining of the Exadata machine Customer/ACS Aman Sharma-OTNYatra

27 OneCommand Latest version available at MOS# Used by the Advanced Customer Support engineers Uses a series of the steps to configure the Exadata machine Executes required configuration steps automatically Customizable Aman Sharma-OTNYatra

28 Oracle Exadata Machine Storage Server- System Accounts CELLADMIN user Uses CELLCLI utility to do the administration tasks Can manage storage components of the storage server Default password- welcome CELLMONITOR user For monitoring only Doesn t have any administrative privileges Default password- welcome ROOT user Has all the rights as of CELLADMIN user Default password-welcome1 Aman Sharma-OTNYatra

29 Oracle Exadata Machine Storage Server- Storage Layout Cell Server System LUN s Cell Disks Aman Sharma-OTNYatra

30 Oracle Exadata Machine Storage Server- Storage Layout Grid Disk(s) Cell Disk Aman Sharma-OTNYatra

31 Oracle Exadata Machine Storage Server- Storage Layout Grid Disk(s) ASM Disk(s) Aman Sharma-OTNYatra

32 That s All For Exadata Today! Exadata is an awesome combination of software & hardware Exadata does nt mean that a DBA is not needed VM images of Exadata are NOT available Exadata is the future! Aman Sharma-OTNYatra

33 Exadata-Useful Books Aman Sharma-OTNYatra

34 Exadata-Useful MOS# s & URL s ase/high_availability/exadata Information Center: Oracle Exadata Database Machine ( ) Information Center: Installing and Configuring Oracle Exadata Database Machine ( ) Exadata Database Machine and Exadata Storage Server Supported Versions ( ) Oracle Exadata Best Practices ( ) Oracle Database Machine Monitoring Best Practices ( ) Aman Sharma-OTNYatra

35 Thank You Aman Sharma-OTNYatra

Methodical Performance Troubleshooting. Arup Nanda. You noticed some degradation of performance

Methodical Performance Troubleshooting. Arup Nanda. You noticed some degradation of performance Methodical Performance Troubleshooting Arup Nanda Agenda What this is about? You noticed some degradation of performance What should you do next? Where to start What tool to use How to understand the root

More information

RODOD Performance Test on Exalogic and Exadata Engineered Systems

RODOD Performance Test on Exalogic and Exadata Engineered Systems An Oracle White Paper March 2014 RODOD Performance Test on Exalogic and Exadata Engineered Systems Introduction Oracle Communications Rapid Offer Design and Order Delivery (RODOD) is an innovative, fully

More information

FlashStack For Oracle RAC

FlashStack For Oracle RAC FlashStack For Oracle RAC May 2, 2017 Mayur Dewaikar, Product Management, Pure Storage John McAbel, Product Management, Cisco What s Top of Mind for Oracle Teams? 1 2 3 4 Consolidation Scale & Speed Simplification

More information

Oracle Financial Services Revenue Management and Billing V2.3 Performance Stress Test on Exalogic X3-2 & Exadata X3-2

Oracle Financial Services Revenue Management and Billing V2.3 Performance Stress Test on Exalogic X3-2 & Exadata X3-2 Oracle Financial Services Revenue Management and Billing V2.3 Performance Stress Test on Exalogic X3-2 & Exadata X3-2 O R A C L E W H I T E P A P E R J A N U A R Y 2 0 1 5 Table of Contents Disclaimer

More information

Zero to 100MPH at the Speed of Cloud: Employing/Deploying Oracle Databases on Oracle's Public Cloud

Zero to 100MPH at the Speed of Cloud: Employing/Deploying Oracle Databases on Oracle's Public Cloud Zero to 100MPH at the Speed of Cloud: Employing/Deploying Oracle Databases on Oracle's Public Cloud Session ID #: 590 Prepared by: Tariq Farooq Kai Yu Charles Kim @brainsurface REMINDER Check in on the

More information

Exadata Implementation and Performance Benefits in Toyota Motor Sales USA.

Exadata Implementation and Performance Benefits in Toyota Motor Sales USA. Exadata Implementation and Performance Benefits in Toyota Motor Sales USA. Author: William Hie (Toyota Motor Sales USA) Sathish Kumar Thiagarajan(Cognizant Technology Solutions) Bipin Sahani(Cognizant

More information

Oracle Platform as a Service and Infrastructure as a Service Public Cloud Service Descriptions-Metered & Non-Metered.

Oracle Platform as a Service and Infrastructure as a Service Public Cloud Service Descriptions-Metered & Non-Metered. Oracle Platform as a Service and Infrastructure as a Service Public Cloud Service Descriptions-Metered & Non-Metered November 20, 2017 Contents GLOSSARY PUBLIC CLOUD SERVICES-NON-METERED... 9 API Call...

More information

Oracle PaaS and IaaS Universal Credits Service Descriptions

Oracle PaaS and IaaS Universal Credits Service Descriptions Oracle PaaS and IaaS Universal Credits Service Descriptions December 1, 2017 Oracle PaaS_IaaS_Universal_CreditsV120117 1 Metrics... 3 Oracle PaaS and IaaS Universal Credit... 8 Oracle PaaS and IaaS Universal

More information

Oracle Cloud Blueprint and Roadmap Service. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Oracle Cloud Blueprint and Roadmap Service. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle Cloud Blueprint and Roadmap Service 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Cloud Computing: Addressing Today s Business Challenges Business Flexibility & Agility Cost

More information

Workforce Management Administrator's Guide. Using ETL Database Schema

Workforce Management Administrator's Guide. Using ETL Database Schema Workforce Management Administrator's Guide Using ETL Database Schema 11/30/2017 Contents 1 Using ETL Database Schema 1.1 ETL Database Schema and Script 1.2 WFM Server's Role in the ETL Process 1.3 Enabling

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session #13: Exadata HealthCheck

<Insert Picture Here> Exadata MAA Best Practices Series Session #13: Exadata HealthCheck Exadata MAA Best Practices Series Session #13: Exadata HealthCheck Vern Wagman Principle Member of Technical Staff Exadata MAA Best Practices Series 1. E-Business Suite on Exadata

More information

An Oracle White Paper Mar Oracle E-Business Suite Incentive Compensation for Engineered Systems

An Oracle White Paper Mar Oracle E-Business Suite Incentive Compensation for Engineered Systems An Oracle White Paper Mar 2017 Oracle E-Business Suite Incentive Compensation for Engineered Systems Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

An Oracle White Paper April Oracle E Business Suite Procurement for Engineered Systems

An Oracle White Paper April Oracle E Business Suite Procurement for Engineered Systems An Oracle White Paper April 2013 Oracle E Business Suite Procurement for Engineered Systems Executive Overview... 3 Overview of Engineered Systems... 4 Oracle Exalogic... 4 Oracle Exadata Database Machine...

More information

An Oracle White Paper April Siebel CRM on Oracle Engineered Systems

An Oracle White Paper April Siebel CRM on Oracle Engineered Systems An Oracle White Paper April 2013 Siebel CRM on Oracle Engineered Systems Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and

More information

Increased Informix Awareness Discover Informix microsite launched

Increased Informix Awareness Discover Informix microsite launched Information Management Increased Informix Awareness Discover Informix microsite launched www.ibm.com/discoverinformix 2010 IBM Corporation Informix Panther Early Program Want to be on the cutting-edge

More information

IBM Tivoli Monitoring

IBM Tivoli Monitoring Monitor and manage critical resources and metrics across disparate platforms from a single console IBM Tivoli Monitoring Highlights Proactively monitor critical components Help reduce total IT operational

More information

Database Fleet Maintenance

Database Fleet Maintenance Database Fleet Maintenance Standardization at Scale October, 2016 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only,

More information

RAC performance tuning

RAC performance tuning RAC performance tuning By Riyaj Shamsudeen OraInternals Riyaj Shamsudeen These are receive metrics RAC CR Wait Events GC cr block 2-way/3-way GC cr block busy GC cr block congested/ GC cr grants congested.

More information

Introduction to IBM Insight for Oracle and SAP

Introduction to IBM Insight for Oracle and SAP Introduction to IBM Insight for Oracle and SAP Sazali Baharom (sazali@my.ibm.com) ISV Solutions Architect IBM ASEAN Technical Sales Target Audience Consultants, Managers, Sr. Managers Infrastructure Service

More information

Oracle Engineered Systems Oracle Support Essentials & die Tools im ExadataUmfeld

Oracle Engineered Systems Oracle Support Essentials & die Tools im ExadataUmfeld Oracle Engineered Systems Oracle Support Essentials & die Tools im ExadataUmfeld Clarissa Rohrmann Oracle Support Stefan Panek Stefan Panek Systemberatung Copyright 2014, Oracle and/or its affiliates.

More information

Analytics Cloud Service Administration Guide

Analytics Cloud Service Administration Guide Analytics Cloud Service Administration Guide Version 17 November 2017 Contents About This Guide... 5 About Primavera Analytics... 5 About Primavera Data Warehouse... 6 Overview of Oracle Business Intelligence...

More information

The IBM and Oracle alliance. Power architecture

The IBM and Oracle alliance. Power architecture IBM Power Systems, IBM PowerVM and Oracle offerings: a winning combination The smart virtualization platform for IBM AIX, Linux and IBM i clients using Oracle solutions Fostering smart innovation through

More information

Oracle's Cloud Strategie für den Geschäftserfolg Alles Neue von der OOW

Oracle's Cloud Strategie für den Geschäftserfolg Alles Neue von der OOW Oracle's Cloud Strategie für den Geschäftserfolg Alles Neue von der OOW Matthias Weiss Direktor Mittelstand Technologie Oracle Deutschland B.V. & Co. KG Agenda 1 2 3 4 5 6 Digital Transformation and CEO

More information

Oracle Real-Time Scheduler Benchmark

Oracle Real-Time Scheduler Benchmark An Oracle White Paper November 2012 Oracle Real-Time Scheduler Benchmark Demonstrates Superior Scalability for Large Service Organizations Introduction Large service organizations with greater than 5,000

More information

Implementing Mobile BI Dashboards. with Datazen

Implementing Mobile BI Dashboards. with Datazen Implementing Mobile BI Dashboards with Datazen Mobility Is the New Normal 52% of information workers across 17 countries report using three or more devices for work. (FORRESTER RESEARCH, BT FUTURES REPORT)

More information

Oracle Big Data Cloud Service

Oracle Big Data Cloud Service Oracle Big Data Cloud Service Delivering Hadoop, Spark and Data Science with Oracle Security and Cloud Simplicity Oracle Big Data Cloud Service is an automated service that provides a highpowered environment

More information

EMC IT s Replatform Proof of Concept to an Open, Scalable Platform

EMC IT s Replatform Proof of Concept to an Open, Scalable Platform Applied Technology Abstract This white paper illustrates EMC IT s replatform POC from a legacy infrastructure (Sun and Solaris) to an open platform (x86 and Linux), expandable infrastructure (consolidated

More information

Integrated Application-to-Disk Management

Integrated Application-to-Disk Management Business-Driven IT Oracle Enterprise Manager: Empowering IT to Drive Business Value Integrated Application-to-Disk Business Driven IT Business Users & Customers Web Portal Business Transaction Product

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights ORACLE PRODUCT LOGO Virtualization and Cloud Deployments of Oracle E-Business Suite Ivo Dujmović, Director, Applications Development 2 Copyright

More information

ORACLE EXALYTICS IN-MEMORY MACHINE T5-8 DATA SHEET

ORACLE EXALYTICS IN-MEMORY MACHINE T5-8 DATA SHEET ORACLE EXALYTICS IN-MEMORY MACHINE T5-8 DATA SHEET SPEED OF THOUGHT ANALYTICS KEY FEATURES 128 CPU cores 4 TB of RAM 6.4 TB PCIe Flash 9.6 TB of raw disk capacity Four 40 Gbps InfiniBand ports Four 8 Gbps

More information

ORACLE INFRASTRUCTURE AS A SERVICE PRIVATE CLOUD WITH CAPACITY ON DEMAND

ORACLE INFRASTRUCTURE AS A SERVICE PRIVATE CLOUD WITH CAPACITY ON DEMAND ORACLE INFRASTRUCTURE AS A SERVICE PRIVATE CLOUD WITH CAPACITY ON DEMAND FEATURES AND FACTS FEATURES Hardware and hardware support for a monthly fee Optionally acquire Exadata Storage Server Software and

More information

Oracle Enterprise Manager. 1 Where To Find Installation And Upgrade Documentation

Oracle Enterprise Manager. 1 Where To Find Installation And Upgrade Documentation Oracle Enterprise Manager Cloud Control Release Notes 13c Release 1 for Oracle Solaris on x86-64 (64-bit) E69464-03 April 2016 Oracle Enterprise Manager Cloud Control 13c Release 1 is a management solution

More information

Assessment of SAP Business One Program in San Beda College Alabang in a Technical Perspective. Engr. Edgardo Torres, MBA

Assessment of SAP Business One Program in San Beda College Alabang in a Technical Perspective. Engr. Edgardo Torres, MBA Assessment of SAP Business One Program in San Beda College Alabang in a Technical Perspective. Engr. Edgardo Torres, MBA Abstract Background SAP (Systems Application in Data Processing) is the leader in

More information

Planning the Capacity of a Web Server: An Experience Report D. Menascé. All Rights Reserved.

Planning the Capacity of a Web Server: An Experience Report D. Menascé. All Rights Reserved. Planning the Capacity of a Web Server: An Experience Report Daniel A. Menascé George Mason University menasce@cs.gmu.edu Nikki Dinh SRA International, Inc. nikki_dinh@sra.com Robert Peraino George Mason

More information

<Insert Picture Here>

<Insert Picture Here> Powering innovation through simplify IT Jürgen Kunz Senior Vice President Northern Europe & Managing Director Oracle Germany Navigating Complexity by Simplifying I.T. 2 Graphic Section

More information

ORACLE BIG DATA APPLIANCE

ORACLE BIG DATA APPLIANCE ORACLE BIG DATA APPLIANCE BIG DATA FOR THE ENTERPRISE KEY FEATURES Massively scalable infrastructure to store and manage big data Big Data Connectors delivers unprecedented load rates between Big Data

More information

Construction & Engineering Global Business Unit Service Descriptions and Metrics February 12, 2018

Construction & Engineering Global Business Unit Service Descriptions and Metrics February 12, 2018 Construction & Engineering Global Business Unit Service Descriptions and Metrics February 12, 2018 Construction Engineering Service Descriptions 1 Table of Contents METRIC DEFINITIONS... 4 GLOSSARY...

More information

50 Tips in 50 Minutes

50 Tips in 50 Minutes 50 Tips in 50 Minutes Reham Darwiche Microsoft Certified Professional: CRM 2013 & 2016 Customization & Configuration Field Service Automation Education: Lebanese American University Bachelor of Science

More information

COMPARE VMWARE. Business Continuity and Security. vsphere with Operations Management Enterprise Plus. vsphere Enterprise Plus Edition

COMPARE VMWARE. Business Continuity and Security. vsphere with Operations Management Enterprise Plus. vsphere Enterprise Plus Edition COMPARE VMWARE vsphere EDITIONS Business Continuity and Security vmotion Enables live migration of virtual machines with no disruption to users or loss of service, eliminating the need to schedule application

More information

Oracle Autonomous Data Warehouse Cloud

Oracle Autonomous Data Warehouse Cloud Oracle Autonomous Data Warehouse Cloud 1 Lower Cost, Increase Reliability and Performance to Extract More Value from Your Data With Oracle Autonomous Database Cloud Service for Data Warehouse Today s leading-edge

More information

Strategies for Monitoring Large Data Centers with Oracle Enterprise Manager. Ana McCollum Consulting Product Manager

Strategies for Monitoring Large Data Centers with Oracle Enterprise Manager. Ana McCollum Consulting Product Manager Strategies for Monitoring Large Data Centers with Oracle Enterprise Manager Ana McCollum Consulting Product Manager The following is intended to outline our general product direction. It is intended for

More information

Big Data The Big Story

Big Data The Big Story Big Data The Big Story Jean-Pierre Dijcks Big Data Product Mangement 1 Agenda What is Big Data? Architecting Big Data Building Big Data Solutions Oracle Big Data Appliance and Big Data Connectors Customer

More information

What s New in Microsoft Dynamics CRM 4.0. Bryan Nielson Director, Product Marketing

What s New in Microsoft Dynamics CRM 4.0. Bryan Nielson Director, Product Marketing What s New in Microsoft Dynamics CRM 4.0 Bryan Nielson Director, Product Marketing Session Agenda Introduction Dynamics CRM 4.0 Feature Areas Use Design Report Data Manage Deploy Develop Demo In Conclusion

More information

Spectrum Control Capacity Planning

Spectrum Control Capacity Planning Spectrum Control Capacity Planning Scott McPeek mcpeek@us.ibm.com Washington Systems Center Bryan Odom odombry@us.ibm.com Software Advanced Technogoly (SWAT) Copyright IBM Corporation 2017. Capacity Planning

More information

[Header]: Demystifying Oracle Bare Metal Cloud Services

[Header]: Demystifying Oracle Bare Metal Cloud Services [Header]: Demystifying Oracle Bare Metal Cloud Services [Deck]: The benefits and capabilities of Oracle s next-gen IaaS By Umair Mansoob Introduction As many organizations look to the cloud as a way to

More information

Microsoft FastTrack For Azure Service Level Description

Microsoft FastTrack For Azure Service Level Description ef Microsoft FastTrack For Azure Service Level Description 2017 Microsoft. All rights reserved. 1 Contents Microsoft FastTrack for Azure... 3 Eligible Solutions... 3 FastTrack for Azure Process Overview...

More information

Deep Dive. Into MS Operations Management Suite. Pete

Deep Dive. Into MS Operations Management Suite. Pete Deep Dive Into MS Operations Management Suite Pete Zerger @pzerger pete.zerger@cireson.com Cameron Fuller @CFullerMVP cameron.fuller@catapultsystems.com Pete Zerger Spring, TX (near Houston) @pzerger Principal

More information

Infoblox DDI Best Practices Guide

Infoblox DDI Best Practices Guide Infoblox DDI Best Practices Guide Best practices for managing and using Infoblox Part 1 NIOS version 8.2 Oct. 2017 2017 Infoblox Inc. All rights reserved. Infoblox DDI Best Practices Guide October 2017

More information

Increasing Enterprise Support Demand & Complexity

Increasing Enterprise Support Demand & Complexity PTC System Monitor Increasing Enterprise Support Demand & Complexity Diagnostics & Troubleshooting Tools based on Customer & TS Requirements Customer Challenges Visibility into System Health Time To Resolution

More information

Make the most of the cloud with Microsoft System Center and Azure

Make the most of the cloud with Microsoft System Center and Azure December 2015 Make the most of the cloud with Microsoft System Center and Azure Writer: Daniel Örneling Amsterdam - Dallas - Ottawa Table of Content 1.1 The Dilemma: too many customers 3 1.2 Is the cloud

More information

An Oracle White Paper April, Enterprise Manager 12c Cloud Control Metering and Chargeback

An Oracle White Paper April, Enterprise Manager 12c Cloud Control Metering and Chargeback An Oracle White Paper April, 2012 Enterprise Manager 12c Cloud Control Executive Overview... 2 Introduction... 2 I.T. Chargeback... 2 Oracle Enterprise Manager... 3 Installing and Configuring Enterprise

More information

Compiere ERP Starter Kit. Prepared by Tenth Planet

Compiere ERP Starter Kit. Prepared by Tenth Planet Compiere ERP Starter Kit Prepared by Tenth Planet info@tenthplanet.in www.tenthplanet.in 1. Compiere ERP - an Overview...3 1. Core ERP Modules... 4 2. Available on Amazon Cloud... 4 3. Multi-server Support...

More information

Nimble Storage vs Dell EMC: A Comparison Snapshot

Nimble Storage vs Dell EMC: A Comparison Snapshot Nimble Storage vs Dell EMC: 1056 Baker Road Dexter, MI 48130 t. 734.408.1993 Nimble Storage vs Dell EMC: INTRODUCTION: Founders incorporated Nimble Storage in 2008 with a mission to provide customers with

More information

Spectrum Storage Suite -Getting From Here to There. Karel van der Woude

Spectrum Storage Suite -Getting From Here to There. Karel van der Woude Spectrum Storage Suite -Getting From Here to There Karel van der Woude Agenda Products and Reminders Overview of trade-up process Determining current entitlements Determining current actual license requirements

More information

Oracle Autonomous Data Warehouse Cloud

Oracle Autonomous Data Warehouse Cloud Oracle Autonomous Data Warehouse Cloud 1 Lower Cost, Increase Reliability and Performance to Extract More Value from Your Data With Oracle Autonomous Data Warehouse Cloud Today s leading-edge organizations

More information

Accelerating Your Big Data Analytics. Jeff Healey, Director Product Marketing, HPE Vertica

Accelerating Your Big Data Analytics. Jeff Healey, Director Product Marketing, HPE Vertica Accelerating Your Big Data Analytics Jeff Healey, Director Product Marketing, HPE Vertica Recent Waves of Disruption IT Infrastructu re for Analytics Data Warehouse Modernization Big Data/ Hadoop Cloud

More information

REQUEST FOR PROPOSAL FOR

REQUEST FOR PROPOSAL FOR REQUEST FOR PROPOSAL FOR HIGH PERFORMANCE COMPUTING (HPC) SOLUTION Ref. No. PHY/ALK/43 (27/11/2012) by DEPARTMENT OF PHYSICS UNIVERSITY OF PUNE PUNE - 411 007 INDIA NOVEMBER 27, 2012 1 Purpose of this

More information

MISSION CRITICAL OPERATIONS

MISSION CRITICAL OPERATIONS MISSION CRITICAL OPERATIONS Simplified integrated monitoring includes virtual environment November, 2015 NEC Corporation, Cloud Platform Division, MasterScope Group Index 1. Changing of IT System Surroundings

More information

Oracle Utilities Mobile Workforce Management Benchmark

Oracle Utilities Mobile Workforce Management Benchmark Oracle Utilities Mobile Workforce Management Benchmark Demonstrates Superior Scalability for Large Field Service Organizations 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 6 Introduction Large

More information

Oracle Enterprise Manager 13c

Oracle Enterprise Manager 13c Oracle Enterprise Manager 13c Michael K Clark November, 2017 Agenda Journey from Oracle Enterprise Manager 12c to 13c What s New in EM 13c Hybrid Cloud Management Engineered Systems & Hardware Management

More information

Materials Control. POS Interface Materials Control <> MICROS Simphony 1.x. Product Version POS IFC Simph1.x Joerg Trommeschlaeger

Materials Control. POS Interface Materials Control <> MICROS Simphony 1.x. Product Version POS IFC Simph1.x Joerg Trommeschlaeger MICROS POS Interface MICROS Simphony 1.x Product Version 8.8.10.42.1528 Document Title: POS IFC Simph1.x : : Date: 27.11.2014 Version No. of Document: 1.2 Copyright 2015, Oracle and/or its affiliates.

More information

Introducing FUJITSU Software Systemwalker Centric Manager V15.0

Introducing FUJITSU Software Systemwalker Centric Manager V15.0 Introducing FUJITSU Software Systemwalker Centric Manager V15.0 < Version 1.0 > November 2013 FUJITSU LIMITED Contents Integrated Monitoring Required in Virtualization/Server Integration Characteristics

More information

Oracle Exadata Engineered for your Database. Table of Contents

Oracle Exadata Engineered for your Database. Table of Contents Chapter 1: Engineered for You 2 Chapter 2: Engineered for Business 6 Chapter 3: Engineered for Clouds 10 Chapter 4: Engineered for Performance 14 Chapter 5: Engineered for All Workloads 20 Chapter 6: Engineered

More information

ECLIPSE 2012 Performance Benchmark and Profiling. August 2012

ECLIPSE 2012 Performance Benchmark and Profiling. August 2012 ECLIPSE 2012 Performance Benchmark and Profiling August 2012 Note The following research was performed under the HPC Advisory Council activities Participating vendors: Intel, Dell, Mellanox Compute resource

More information

SolutionBuilder & Guided Solution Sizing. Winning Together

SolutionBuilder & Guided Solution Sizing. Winning Together SolutionBuilder & Guided Solution Sizing Winning Together March 7, 2013 Agenda SolutionBuilder Introduction Guided Solution Sizing (GSS) Introduction How to Access SolutionBuilder and GSS Guided Solution

More information

Waters Nordic Technology and User Meeting Waters Corporation 1

Waters Nordic Technology and User Meeting Waters Corporation 1 Waters Nordic Technology and User Meeting 2017 2015 Waters Corporation 1 Topics Consultancy Process Overview Empower Enterprise System Inventory Empower HealthCheck Disaster Recovery Plan (DRP) Empower

More information

Kepion Solution vs. The Rest. A Comparison White Paper

Kepion Solution vs. The Rest. A Comparison White Paper Kepion Solution vs. The Rest A Comparison White Paper In the Business Intelligence industry, Kepion competes everyday with BI vendors such as IBM Cognos, Oracle Hyperion and SAP BusinessObjects. At first

More information

Syslog Technologies Innovative Thoughts

Syslog Technologies Innovative Thoughts EMPLOYEE LEAVE MANAGEMENT SYSTEMANDROIDAPP ABSTRACT: - As a competitive organisation, you need a reliable leave management system to manage employee absence, calculate leave accruals and make payments

More information

IBM Cognos What s New? Webinar. December 12,

IBM Cognos What s New? Webinar. December 12, IBM Cognos 10.2 What s New? Webinar December 12, 2012 www.senturus.com 1 Helping Companies Learn From the Past, Manage the Present and Shape the Future GoToWebinar Control Panel Submit questions here Click

More information

ENTERPRISE HYBRID CLOUD 4.1

ENTERPRISE HYBRID CLOUD 4.1 Solution Guide ENTERPRISE HYBRID CLOUD 4.1 EMC Solutions Abstract This guide provides an overview of the management and monitoring functionality of the. Enterprise Hybrid Cloud enables IT organizations

More information

Kaseya Traverse Unified Cloud, Network, Server & Application Monitoring

Kaseya Traverse Unified Cloud, Network, Server & Application Monitoring PRODUCT BRIEF Kaseya Traverse Unified Cloud, Network, Server & Application Monitoring Kaseya Traverse is a next-generation software solution for monitoring the performance of hybrid cloud and IT infrastructure

More information

About Oracle Primavera P6 Enterprise Project Portfolio Management

About Oracle Primavera P6 Enterprise Project Portfolio Management P6 EPPM System Architecture Data Sheet Release 15.1 March 2015 Contents About Oracle Primavera P6 Enterprise Project Portfolio Management... 5 Working with the Oracle Primavera P6 EPPM Suite... 6 For

More information

GADD platform Overview

GADD platform Overview GADD platform Overview A GADD White Paper Published January, 2012 gaddsoftware.com Table of content 1. Introduction... 4 2. What makes the GADD platform different?... 4 2.1. How it has evolved... 4 2.2.

More information

Databases to Oracle Exadata: The Saga Continues for Oracle Enterprise Manager Based Patching

Databases to Oracle Exadata: The Saga Continues for Oracle Enterprise Manager Based Patching Databases to Oracle Exadata: The Saga Continues for Oracle Enterprise Manager Based Patching Presented with Brian Bong, Director, Database & Analytics Architecture, Walgreens Corp Dee Hicks, Manager, Database

More information

Disaster Recovery as a Service (DRaaS) How innovation in the Cloud enables disaster recovery at minimal costs

Disaster Recovery as a Service (DRaaS) How innovation in the Cloud enables disaster recovery at minimal costs Disaster Recovery as a Service (DRaaS) How innovation in the Cloud enables disaster recovery at minimal costs When examining a Disaster Recovery environment, CIOs often ask - A Disaster Recovery environment

More information

Sizing Component Extension 6.0 for SAP EHS Management

Sizing Component Extension 6.0 for SAP EHS Management Sizing Guide Document Version: 1.3 2016-05-18 Sizing Component Extension 6.0 for SAP EHS Management Disclaimer Some components of this product are based on Java. Any code change in these components may

More information

COURSE OUTLINE: Course 20533C- Implementing Microsoft Azure Infrastructure Solutions

COURSE OUTLINE: Course 20533C- Implementing Microsoft Azure Infrastructure Solutions Course Name Course Duration Course Structure Course Overview 20533C-Implementing Microsoft Azure Infrastructure Solutions 5 Days Instructor-Led This course is intended for IT professionals who are familiar

More information

Primavera Analytics and Primavera Data Warehouse Security Overview

Primavera Analytics and Primavera Data Warehouse Security Overview Analytics and Primavera Data Warehouse Security Guide 15 R2 October 2015 Contents Primavera Analytics and Primavera Data Warehouse Security Overview... 5 Safe Deployment of Primavera Analytics and Primavera

More information

IBM ICE (Innovation Centre for Education) Welcome to: Unit 1 Overview of delivery models in Cloud Computing. Copyright IBM Corporation

IBM ICE (Innovation Centre for Education) Welcome to: Unit 1 Overview of delivery models in Cloud Computing. Copyright IBM Corporation Welcome to: Unit 1 Overview of delivery models in Cloud Computing 9.1 Unit Objectives After completing this unit, you should be able to: Understand cloud history and cloud computing Describe the anatomy

More information

SAP Public Budget Formulation 8.1

SAP Public Budget Formulation 8.1 Sizing Guide Document Version: 1.0 2013-09-30 CUSTOMER Typographic Conventions Type Style Example Example EXAMPLE Example Example EXAMPLE Description Words or characters quoted from the screen.

More information

IBM xseries 430. Versatile, scalable workload management. Provides unmatched flexibility with an Intel architecture and open systems foundation

IBM xseries 430. Versatile, scalable workload management. Provides unmatched flexibility with an Intel architecture and open systems foundation Versatile, scalable workload management IBM xseries 430 With Intel technology at its core and support for multiple applications across multiple operating systems, the xseries 430 enables customers to run

More information

Performance tuning using SQL new features. By Riyaj Shamsudeen

Performance tuning using SQL new features. By Riyaj Shamsudeen Performance tuning using SQL new features By Riyaj Shamsudeen Who am I? 15 years using Oracle products Over 14 years as Oracle DBA Certified DBA versions 7.0,7.3,8,8i &9i Specializes in performance tuning,

More information

Oracle Paas. Rino Weggers, Customer Success Manager Frank Brink, Customer Success Manager November 17, 2015

Oracle Paas. Rino Weggers, Customer Success Manager Frank Brink, Customer Success Manager November 17, 2015 Oracle Paas Rino Weggers, Customer Success Manager Frank Brink, Customer Success Manager November 17, 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle Confidential Internal/Restricted/Highly

More information

Customer Snapshot Building a DWH with HP Oracle s DB-Machine

Customer Snapshot Building a DWH with HP Oracle s DB-Machine Customer Snapshot Building a DWH with HP Oracle s DB-Machine Christian Maar, CIO Allegro Group Rafal Kudlinski, Head DWH Division Würzburg, 3rd February 2009 EMEA DWH Terabyte Club Customer Meeting Agenda

More information

Use Hyperion Workspace User's Guide

Use Hyperion Workspace User's Guide Use Hyperion Workspace User's Guide 11.1.1.3 This software or hardware is developed for general use in a variety of information In EPM Workspace, select Tools, then Install, and then Smart View. Oracle

More information

Table of Contents HOL CMP

Table of Contents HOL CMP Table of Contents Lab Overview - - vrealize Business for Cloud - Getting Started... 2 Lab Guidance... 3 Module 1 - Computing the Cost of your Private Cloud (30 Minutes)... 9 Introduction... 10 Overview

More information

Datametica DAMA. The Modern Data Platform Enterprise Data Hub Implementations. What is happening with Hadoop Why is workload moving to Cloud

Datametica DAMA. The Modern Data Platform Enterprise Data Hub Implementations. What is happening with Hadoop Why is workload moving to Cloud DAMA Datametica The Modern Data Platform Enterprise Data Hub Implementations What is happening with Hadoop Why is workload moving to Cloud 1 The Modern Data Platform The Enterprise Data Hub What do we

More information

Oracle Exalytics X6-4

Oracle Exalytics X6-4 ORACLE DATA SHEET Oracle Exalytics X6-4 Oracle Exalytics In-Memory Machine X6-4 is the industry s first engineered system for in-memory analytics that delivers extreme performance for Business Intelligence

More information

Application Performance Management for Cloud

Application Performance Management for Cloud Application Performance Management for Cloud CMG By Priyanka Arora prarora803@gmail.com Cloud Adoption Trends 2 Spending on public cloud Infrastructure as a Service hardware and software is forecast to

More information

Oracle BI 12c: Create Analyses and Dashboards Ed 1

Oracle BI 12c: Create Analyses and Dashboards Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle BI 12c: Create Analyses and Dashboards Ed 1 Duration: 5 Days What you will learn This Oracle BI 12c: Create Analyses and

More information

EMC VNX FAMILY. Next-generation unified storage, optimized for virtualized applications ESSENTIALS. VNX Family

EMC VNX FAMILY. Next-generation unified storage, optimized for virtualized applications ESSENTIALS. VNX Family EMC VNX FAMILY Next-generation unified storage, optimized for virtualized applications ESSENTIALS Unified storage for file, block, and object storage MCx multi-core optimization unlocks the power of flash

More information

Oracle DBaaS Migration Road Map. 27 January, 2016

Oracle DBaaS Migration Road Map. 27 January, 2016 Oracle DBaaS Migration Road Map 27 January, 2016 1 Daniel Morgan Oracle ACE Director Educator Wrote Oracle curriculum and primary program instructor at University of Washington Oracle Consultant: Harvard

More information

Pentaho 8.0 and Beyond. Matt Howard Pentaho Sr. Director of Product Management, Hitachi Vantara

Pentaho 8.0 and Beyond. Matt Howard Pentaho Sr. Director of Product Management, Hitachi Vantara Pentaho 8.0 and Beyond Matt Howard Pentaho Sr. Director of Product Management, Hitachi Vantara Safe Harbor Statement The forward-looking statements contained in this document represent an outline of our

More information

BMC CONTROL-M WORKLOAD OPTIMIZATION

BMC CONTROL-M WORKLOAD OPTIMIZATION BMC CONTROL-M WORKLOAD OPTIMIZATION TIPS & TRICKS FOR ADMINISTERING BMC CONTROL-M BMC Communities Site for South East User Group About Cetan Corp Cetan Corp is a leading independent provider of Workload

More information

Product Brief SysTrack VMP

Product Brief SysTrack VMP Product Brief SysTrack VMP Benefits Optimize desktop and server virtualization and terminal server projects Anticipate and handle problems in the planning stage instead of postimplementation Use iteratively

More information

InfoSphere DataStage Grid Solution

InfoSphere DataStage Grid Solution InfoSphere DataStage Grid Solution Julius Lerm IBM Information Management 1 2011 IBM Corporation What is Grid Computing? Grid Computing doesn t mean the same thing to all people. GRID Definitions include:

More information

Oracle Hyperion Planning for Interactive Users

Oracle Hyperion Planning for Interactive Users Oracle University Contact Us: 1.800.529.0165 Oracle Hyperion Planning 11.1.2 for Interactive Users Duration: 0 Days What you will learn This course is designed to teach you how to use Planning. It includes

More information

Pre-Installation Instructions

Pre-Installation Instructions Agile Product Lifecycle Management PLM Mobile Release Notes Release 3.1 E65644-01 August 2015 These Release Notes provide technical information about Oracle Product Lifecycle Management (PLM) Mobile 3.1.

More information

SAP Crystal Solutions

SAP Crystal Solutions SAP Crystal Solutions SAP CRYSTAL SOLUTIONS WHAT S NEW IN 2011 CONTENT 4 What s New in SAP Crystal Server 2011 4 Guided Data Exploration 5 Engaging User Experience 5 Common Query Panel Across All Client

More information

Getting Started with VOP Radius

Getting Started with VOP Radius Getting Started with VOP Radius VOP Radius Server for Windows Version: 4.0 July 16, 2004 Vircom Inc. 2055, Peel Suite 200 Montreal, Quebec Canada H3A 1V4 http://www.vircom.com AUTHENTICATION METHOD...

More information