<Insert Picture Here> Maximizing Database Performance: Performance Tuning with DB Time

Size: px
Start display at page:

Download "<Insert Picture Here> Maximizing Database Performance: Performance Tuning with DB Time"

Transcription

1 1

2 <Insert Picture Here> Maximizing Database Performance: Performance Tuning with DB Time Kurt Engeleiter, John Beresniewicz, Cecilia Gervasio Oracle America

3 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 3

4 Agenda NEWS: DB Time is not news DB Time Fundamentals DB Time Method for Performance Tuning DB Time Based Tools ADDM Enterprise Manager 4

5 <Insert Picture Here> NEWS: DB Time is Not News 5

6 DB Time is Pervasive, Familiar, Evolutionary DB Time is the fundamental measure of Oracle performance Arrived at progressively but designed-in from 10g You are likely using DB Time methods already AWR and ASH reports Enterprise Manager DB Time is performance analysis science matured Wait event analysis, YAPP and tracing are all its ancestors 6

7 DB Time on the Database Home Page Host CPU Is host CPU-bound? Is this DB responsible? Active Sessions DB Time accumulation by CPU, User I/O, Wait 7

8 DB Time on the Performance Page Area under curve is equal to DB time Wait class breakdown indicates solution space 8

9 DB Time on the Top Activity Page Plots DB Time from ASH data Shows top DB Time consumers by SQL and Session DB Time 9

10 DB Time in AWR Report Time Model measures and accumulates DB Time through session instrumentation DB Time and DB CPU most important Also shows DB Time expended in various sub-operations 10

11 DB Time in AWR Report If you tune by Wait Events you are tuning by DB Time Top 5 Timed Events in the AWR report shows CPU time and non-idle waits for foregrounds 11

12 DB Time in the Grid Control DB Loadmap Maps DB Time across the enterprise Cell size proportional to DB Time 12

13 <Insert Picture Here> DB Time Fundamentals 13

14 Why Do We Care About Time? Human time is critical to the enterprise Systems performance affects business goals Human time + technology resource time Time is money Performance improvement means doing things faster Performance is always and only about time 14

15 DB Time Defined Total time in database calls by foreground sessions Includes CPU time, IO time and non-idle wait time DB Time is not called response time on purpose Common currency for Oracle performance analysis Database time is total time spent by user processes either actively working or actively waiting in a database call. 15

16 Session-level Concepts Database Time (DB Time) = Total time session spends in all database calls Active Session = Session currently spending time in a database call Average Activity of the Session (% Activity) = Ratio of time active to total wall clock time = Sum(Active Time) / Elapsed Time Browse books Read reviews for a book Add to cart Checkout TIME = time spent in database 16

17 Multiple Sessions DB Time = Sum of DB Time over all sessions Avg. Active Sessions = Sum of Avg. Activity over all sessions = Sum(DB Time) / Elapsed Time User 1 User 2 User 3 = time spent in database TIME User n 17

18 Visualizing DB Time User 1 User 2 User 3 User n t0 t Active Sessions over time TIME 18

19 Enterprise Manager Performance Page Active Sessions by wait class over time Colored area is the amount of DB Time DB Time on User I/O is always blue DB Time on CPU is always green 19

20 <Insert Picture Here> DB Time and System Performance 20

21 System Load and DB Time More users More database calls DB Time increases Larger transactions More SQLs per call DB Time increases DB time increases as system load increases. 21

22 System Performance and DB Time I/O performance degrades I/O wait time increases DB Time increases Application performance degrades Longer elapsed time per SQL DB Time increases DB time increases as performance degrades. 22

23 Host Performance and DB Time Host is CPU bound Foregrounds accumulate active run-queue time Wait event times are artificially inflated DB Time increases Tune for CPU before waits when CPU constrained 23

24 CPU Run-Queue and DB Time Recorded wait time Recorded wait time User 1 Db file sequential read Run-queue On CPU Db file sequential read Run-queue On CPU Actual wait time Actual wait time DB time is inflated when host is CPU-bound 24

25 <Insert Picture Here> The DB Time Method for Performance Tuning 25

26 The DB Time Method: Short Course Determine where or database time is just spent, ask and ADDM reduce it! 26

27 The DB Time Method: Process 1. Identify performance issue 2. Scope the issue 3. Set goals 4. Data capture AWR handles this 5. Investigate DB time distribution Identify largest potential improvement 6. Modify system to tune for largest gain 7. Evaluate against goals Performance tuning by removing excess DB time 27

28 Identify and Scope the Problem Big spike = big problem! Container (host) or database issue? 28

29 Investigate DB Time Distribution Identify excess DB time Look for large skews in time that may represent inefficiencies System scope: Resource limits is problem outside the DB? Resource contention (latches) Application scope: Service, module, action SQLID, rowsource Resource contention (enqueues) Session scope: Long-running SQL Resource contention (holding enqueues in uncommitted txns) 29

30 Investigate DB Time distribution Which wait classes are dominant? Top lists show skew in key dimensions (SQL, session, file, etc.) 30

31 Identify Time-saving Modifications System scope: Initialization parameter changes Add resources or capacity Application scope: SQL Tuning Advisor: SQL profiles Real-time SQL Monitoring Access Advisor: Physical schema layout Re-write SQL Session scope: Kill session for immediate contention relief Application design changes often long-term solution 31

32 Critical Success Factors Match solution scope to problem scope Don t tweak optimizer parameters before tuning SQL Address root causes, not symptoms Proceed iteratively one fix at a time Concurrent fixes should be orthogonal Measure and validate results at each successive step Stop when goals are met 32

33 Advantages of the DB Time Method Tunes exactly what affects users: Time wasted in database Data capture not necessary: Always on instrumentation framework (AWR, ASH) No requirement to reproduce problem (unlike tracing) Superior coverage of all scope levels Works for concurrency problems such as locking Tight integration with kernel-engineered tools Maturation and extension of well-proven methodologies 33

34 <Insert Picture Here> DB Time Based Tools: ADDM Enterprise Manager 34

35 Tools for Applying DB Time Method Two use-cases, one method: 1. Tuning steady-state performance Improve overall workload throughput or response time Best practice: use ADDM 2. Diagnosing transient performance problems Confirm and investigate reported performance issues Best practice: use EM real-time screens 35

36 Example: Using ADDM Users complain about bad performance AWR report indicates some unusual issues on system What to do? 36

37 What does the Internet advise? Let s search on enq: HW contention 9,000 hits and LOTS of discussion 37

38 Example: Following the links Many hits are other people asking the same question what do I do about this wait event? 38

39 Solution: ADDM in Enterprise Manager Performance Page shows a spike of unusual activity Click on the ADDM analysis icon 39

40 Solution: Using ADDM ADDM performance findings are DB Time based Ranked by impact = percent of DB Time affected Click on the issue with the highest impact 40

41 Solution: Using ADDM ADDM recommendations describe solutions for findings EM presents implement actions where possible 41

42 Best Practice: Enterprise Manager Real-time Interface Transient (sub-hour) or immediate time scope Requires interactivity of UI Click on the big stuff Data visualizations display skew directly Takes some expertise to separate symptoms from root causes 42

43 Click on the Big Stuff Follow the DB Time Spike in DB Time signals possible performance issue Click through to Top Activity for more details 43

44 Follow the DB Time Top Activity Drilldown Top Activity Page confirms problem and shows highly skewed DB Time by SQL ID. Click on top SQL ID for further details. 44

45 Click on the Big Stuff Follow the DB Time SQL Details confirms this SQL produced the spike in DB Time and shows parallel execution. Click on SQL Monitoring to see DB Time by execution plan steps. 45

46 Follow the DB Time SQL Execution Details 46

47 DB Time Method Summary DB time is the fundamental performance metric The method allows DB time analysis at many scopes Proper scoping of problems and solutions is critical to success DB time based diagnosis removes value judgments Scientific method, not sorcerer s magic Performance improvement means doing the same work in less DB Time 47

48

49 Oracle Enterprise Manager 11g Resource Center Access Videos, Webcasts, White Papers, and More Oracle.com/enterprisemanager11g 49

50 Additional Oracle Enterprise Manager Sessions Wednesday, Sept :00 a.m. - Manage the Manager: Diagnosing and Tuning Oracle Enterprise Manager 11:30 a.m. - Maximizing Database Performance: Performance Tuning with DB Time 11:30 a.m. - Make Upgrades Uneventful Using Oracle Enterprise Manager and My Oracle Support 12:30pm Extracting Real Value from Your Data with Apache Hadoop 1:00 p.m.- Reducing the Risk of SOA Transactions 1:00 p.m. - SQL Tuning Roundtable with Oracle Gurus 4:45 p.m.- Strategies for Monitoring Large Datacenters with Oracle Enterprise Manager 4:45 p.m.- Oracle SOA Management Best Practices, Tips, and Techniques 4:45 p.m.- Oracle E-Business Suite Technology: Vision, Release Overview, Product Roadmap Location Moscone S Rm 102 Moscone S Rm 104 Moscone S Rm 310 Hilton Hotel, Plaza B Marriott Marquis, Salon 6 Moscone S Rm102 Moscone S Rm102 Moscone W L3, Rm 3018 Moscone W L3, Rm 3002 /

51 Additional Oracle Enterprise Manager Sessions Thursday, Sept. 23 9:00 a.m. - Oracle WebLogic Server Management for Oracle DBAs 9:00 a.m. - Enabling Database as a Service Through Agile Self- Service Provisioning 9:00 a.m. - Reduce TCO with Oracle Application Management Pack for Oracle E-Business Suite 10:30 a.m. - Best Practices for Managing Your PeopleSoft Applications 10:30 a.m. - Oracle Enterprise Manager Grid Control Deployment Best Practices 10:30 a.m. - Managing Sun SPARC Servers with Oracle Enterprise Manager Ops Center 10:30 a.m. - Heterogeneous Data Masking: Oracle, SQL Server, and DB2 Database Best Practices 12:00 p.m. - Scalable Enterprise Data Processing for the Cloud with Oracle Grid Engine 12:00 p.m. - Spot Problems Before Your Users Call: User Experience Monitoring for Oracle Apps 12:00 p.m. - Reduce Problem Resolution Time with Oracle Database 11g Diagnostic Framework Location Marriott Marquis, Salon 9 Moscone S. Room 102 Moscone W L2, Rm 2024 Marriott Hotel, Golden Gate A Moscone S. Room 102 Moscone S. Room 252 Moscone S. Room 306 Moscone S. Room 310 Marriott Hotel, Golden Gate A Moscone S. Room

52 Additional Oracle Enterprise Manager Sessions Thursday, Sept. 23 1:30 p.m. - Patching Enterprisewide Databases: Automation Techniques and Real-World Insights 1:30 p.m. - Managing User Experience: Lessons from ebay 1:30 p.m. - Deep Java Diagnostics and Performance Tuning: Expert Tips and Techniques 1:30 p.m. - Oracle Enterprise Manager Configuration Management Unleashed: Top 10 Expert Tips 1:30 p.m. - Oracle Enterprise Manager Security Best Practices 3:00 p.m - The X-Files: Managing the Oracle Exadata and Highly Available Oracle Databases 3:00 p.m. - Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Location Moscone S. Room 310 Marriott Hotel, Golden Gate A Marriott Marquis, Salon 9 Marriott Marquis, Salon 6 Moscone S. Room 102 Moscone S. Room 102 Moscone S. Room

53 Oracle Enterprise Manager Hands On Labs Monday September 20, :30 p.m. - 4:30 p.m. Database Performance Diagnostics and Tuning Marriott Hotel, Salon 12/13, YB Level 5:00 p.m. - 6:00 p.m. Provisioning, Patch Automation, and Configuration Management Pack Marriott Hotel, Salon 12/13, YB Level 5:00 p.m. - 6:00 p.m. Oracle Application Mgmt. Pack for Oracle E-Business Suite: Monitor/Clone Marriott Marquis, Nob Hill Tuesday September 21, :00 a.m.-12:00 p.m. Using Oracle Application Change Management Pack for Oracle E-Business Suite Marriott Marquis, Nob Hill 12:30 p.m.-1:30 p.m. Database and Application Testing Marriott Hotel, Salon 12/13, YB Level 2:00 p.m. - 3:00 p.m. Oracle Fusion Middleware Management Marriott Hotel, Salon 12/13, YB Level 3:30 p.m. - -4:30 p.m. Provisioning, Patch Automation, and Configuration Management Pack Marriott Hotel, Salon 12/13, YB Level Wednesday September 22, :45 p.m. - 5:45 p.m. Database and Application Testing Marriott Hotel, Salon 12/13, YB Level 4:45 p.m. - 5:45 p.m. Oracle Application Mgmt. Pack for Oracle E-Business Suite: Monitor/Clone Marriott Marquis, Nob Hill Thursday September 23, :00 a.m. - 10:00 a.m. Database Performance Diagnostics and Tuning Marriott Hotel, Salon 12/13, YB Level 10:30 a.m. - 11:30 a.m. Oracle Fusion Middleware Management Marriott Hotel, Salon 12/13, YB Level 53

54 Oracle Enterprise Manager Demogrounds D E M O T I T L E Oracle Real Application Testing: Database Replay Oracle Real Application Testing: SQL Performance Analyzer Self-Managing Database: Automatic Performance Diagnostics Self-Managing Database: Automatic Fault Diagnostics Self-Managing Database: Automatic Application and SQL Tuning Application Quality Management: Application Testing Suite Real User Monitoring with Oracle Enterprise Manager Siebel CRM Application Management Real User Monitoring with Oracle Enterprise Manager Oracle WebLogic Server Management and Java Diagnostics SOA Management with Oracle Enterprise Manager Oracle Business Transaction Management Push Button Provisioning and Patch Automation Smart Configuration Management Oracle Enterprise Manager Ops Center Managing the Enterprise Private Cloud System Management, My Oracle Support, and Oracle Enterprise Manager Self Managing Database: Change Management for DBAs Oracle Enterprise Manager: Complete Datacenter Management Self-Managing Database: Data Masking for DBAs L O C A T I O N Moscone West Moscone West Moscone West Moscone West Moscone West Moscone South - S022 Moscone South - S021 Moscone South - S024 Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West Moscone West 54

55 55

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

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

More information

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

<Insert Picture Here> Automate Your E-Business Suite Testing With Oracle Application Testing Suite

<Insert Picture Here> Automate Your E-Business Suite Testing With Oracle Application Testing Suite Automate Your E-Business Suite Testing With Oracle Application Testing Suite Joe Fernandes Director of Product Management, Oracle Sam Tong Systems Architect, Forsythe Uday Tembulkar

More information

Real-World Performance Training Core Database Performance

Real-World Performance Training Core Database Performance Real-World Performance Training Core Database Performance Real-World Performance Team Agenda 1 2 3 4 5 6 Computer Science Basics Schema Types and Database Design Database Interface DB Deployment and Access

More information

SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability

SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability SQL Gone Wild: Taming Bad SQL the Easy Way (or the Hard Way) Sergey Koltakov Product Manager, Database Manageability Oracle Enterprise Manager Top-Down, Integrated Application Management Complete, Open,

More information

Oracle Database 12c: Performance Management and Tuning

Oracle Database 12c: Performance Management and Tuning Oracle University Contact Us: +43 (0)1 33 777 401 Oracle Database 12c: Performance Management and Tuning Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

<Insert Picture Here> DBA Best Practices: A Primer on Managing Oracle Databases

<Insert Picture Here> DBA Best Practices: A Primer on Managing Oracle Databases DBA Best Practices: A Primer on Managing Oracle Databases Mughees A. Minhas Sr. Director of Product Management Database and Systems Management The following is intended to outline

More information

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

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

Moving Databases to Oracle Cloud: Performance Best Practices

Moving Databases to Oracle Cloud: Performance Best Practices Moving Databases to Oracle Cloud: Performance Best Practices Kurt Engeleiter Product Manager Oracle Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

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

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

More information

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis

More information

Using Active Session History for Performance Tuning: Advanced Topics in Performance Diagnostics

Using Active Session History for Performance Tuning: Advanced Topics in Performance Diagnostics Using Active Session History for Performance Tuning: Advanced Topics in Performance Diagnostics Graham Wood Oracle USA Agenda Performance Diagnosis What is ASH? Using ASH data What

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 Managing Oracle Database 12c with Oracle Enterprise Manager 12c Martin

More information

Database Performance Analysis Techniques Using Metric Extensions and SPA

Database Performance Analysis Techniques Using Metric Extensions and SPA Database Performance Analysis Techniques Using Metric Extensions and SPA Kurt Engeleiter Oracle Corporation Redwood Shores, CA, USA Keywords: ADDM, SQL Tuning Advisor, SQL Performance Analyzer, Metric

More information

Oralogic Education Systems

Oralogic Education Systems Oralogic Education Systems Next Generation IT Education Systems Introduction: In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis and tuning tasks

More information

Successful Upgrade Secrets: Preventing Performance Problems with Database Replay

Successful Upgrade Secrets: Preventing Performance Problems with Database Replay Successful Upgrade Secrets: Preventing Performance Problems with Database Replay Prabhaker Gongloor (GP), Leonidas Galanis, Karl Dias Database Manageability Oracle Corporation Oracle s Complete Enterprise

More information

Oracle Database 10g The Self-Managing Database

Oracle Database 10g The Self-Managing Database Oracle Database 10g The Self-Managing Database Benoit Dageville Oracle Corporation benoit.dageville@oracle.com Page 1 1 Agenda Oracle10g: Oracle s first generation of self-managing database Oracle s Approach

More information

(10393) Database Performance Tuning Hands-On Lab

(10393) Database Performance Tuning Hands-On Lab (10393) Database Performance Tuning Hands-On ASH Analytics Real-time ADDM SQL Performance Analyzer Objective: Database Performance Hands-on The objective of this lab to provide exercises designed to showcase

More information

Managing Oracle Database 12c with Oracle Enterprise Manager 12c

Managing Oracle Database 12c with Oracle Enterprise Manager 12c Managing Oracle Database 12c with Oracle Enterprise Manager 12c The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

End-to-end Management with Grid Control. John Abrahams Technology Sales Consultant Oracle Nederland B.V.

End-to-end Management with Grid Control. John Abrahams Technology Sales Consultant Oracle Nederland B.V. End-to-end Management with Grid Control John Abrahams Technology Sales Consultant Oracle Nederland B.V. Agenda End-to-end management with Grid Control Database Performance Management Challenges Complexity

More information

Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure

Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure Ken Kutzer, Ramin Maozeni Systems Engineering Systems Division September 30, 2014 CON5748 Moscone South 301 Safe Harbor Statement The

More information

<Insert Picture Here> DBA s New Best Friend: Advanced SQL Tuning Features of Oracle Database 11g

<Insert Picture Here> DBA s New Best Friend: Advanced SQL Tuning Features of Oracle Database 11g DBA s New Best Friend: Advanced SQL Tuning Features of Oracle Database 11g Peter Belknap, Sergey Koltakov, Jack Raitto The following is intended to outline our general product direction.

More information

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

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

More information

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 ALM with Visual Studio: SQL and PL/SQL Development, Source Control, and Deployment Christian Shay Product Manager, Oracle Program Agenda SQL and PL/SQL Development Lifecycle Overview Create Development

More information

Oracle Database 12c Performance Management and Tuning

Oracle Database 12c Performance Management and Tuning Course Code: OC12CPMT Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 12c Performance Management and Tuning Overview In the Oracle Database 12c: Performance Management and Tuning course,

More information

OpenWorld 2018 SQL Tuning Tips for Cloud Administrators

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

More information

Best Practices for Performance Part 2.NET and Oracle Database

Best Practices for Performance Part 2.NET and Oracle Database Best Practices for Performance Part 2.NET and Oracle Database Alex Keh Christian Shay Product Managers Server Technologies September 19, 2016 Program Agenda 1 2 3 4 Caching SQL Tuning Advisor Oracle Performance

More information

Oracle Database 11g: Real Application Testing & Manageability Overview

Oracle Database 11g: Real Application Testing & Manageability Overview Oracle Database 11g: Real Application Testing & Manageability Overview Top 3 DBA Activities Performance Management Challenge: Sustain Optimal Performance Change Management Challenge: Preserve Order amid

More information

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

Oracle 1Z0-417 Exam Questions and Answers (PDF) Oracle 1Z0-417 Exam Questions 1Z0-417 BrainDumps Oracle 1Z0-417 Dumps with Valid 1Z0-417 Exam Questions PDF [2018] The Oracle 1Z0-417 Oracle Database Performance and Tuning Essentials 2015 Exam exam is an ultimate source for professionals to retain their

More information

<Insert Picture Here> Forms Strategies: Modernizing Your Oracle Forms Investment

<Insert Picture Here> Forms Strategies: Modernizing Your Oracle Forms Investment Forms Strategies: Modernizing Your Oracle Forms Investment Desmond Chan Solution Architect Manager Oracle Consulting Services Agenda Oracle Forms Strategy Forms Modernisation Strategies

More information

Oracle Secure Backup: Achieve 75 % Cost Savings with Your Tape Backup

Oracle Secure Backup: Achieve 75 % Cost Savings with Your Tape Backup 1 Oracle Secure Backup: Achieve 75 % Cost Savings with Your Tape Backup Donna Cooksey Oracle Principal Product Manager John Swallow Waters Corporation Sr. Infrastructure Architect Enterprise Software Solutions

More information

<Insert Picture Here> Reduce Problem Resolution Time with Oracle Database 11g Diagnostic Framework

<Insert Picture Here> Reduce Problem Resolution Time with Oracle Database 11g Diagnostic Framework 1 Reduce Problem Resolution Time with Oracle Database 11g Diagnostic Framework Marcus Fallen Principal Member of Technical Staff The following is intended to outline our general product

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. reserved. Insert Information Protection Policy Classification from Slide 8 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics

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

More information

What is Real Application Testing?

What is Real Application Testing? Real Application Testing Real Application Testing Enterprise Manager Management Packs Enhancements What is Real Application Testing? New database option available with EE only Includes two new features

More information

Manage Change With Confidence: Upgrading to Oracle Database 11g with Oracle Real Application Testing

Manage Change With Confidence: Upgrading to Oracle Database 11g with Oracle Real Application Testing Manage Change With Confidence: Upgrading to Oracle Database 11g with Oracle Real Application Testing The following is intended to outline our general product direction. It is intended for information purposes

More information

Best Practices for Performance Part 1.NET and Oracle Database

Best Practices for Performance Part 1.NET and Oracle Database Best Practices for Performance Part 1.NET and Oracle Database Alex Keh Christian Shay Product Managers Server Technologies September 19, 2016 Program Agenda 1 2 3 4 Optimization Process ODP.NET Performance

More information

Session id: The Self-Managing Database: Guided Application and SQL Tuning

Session id: The Self-Managing Database: Guided Application and SQL Tuning Session id: 40713 The Self-Managing Database: Guided Application and SQL Tuning Lead Architects Benoit Dageville Khaled Yagoub Mohamed Zait Mohamed Ziauddin Agenda SQL Tuning Challenges Automatic SQL Tuning

More information

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

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

More information

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 1 The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 Donna Cooksey Principal Product Manager, Oracle Corporation Sean McKeown

More information

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

Copyright 2011, Oracle and/or its affiliates. All rights reserved. The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

Oracle Diagnostics Pack For Oracle Database

Oracle Diagnostics Pack For Oracle Database Oracle Diagnostics Pack For Oracle Database ORACLE DIAGNOSTICS PACK FOR ORACLE DATABASE Oracle Enterprise Manager is Oracle s integrated enterprise IT management product line, and provides the industry

More information

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing

Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Trouble-free Upgrade to Oracle Database 12c with Real Application Testing Kurt Engeleiter Principal Product Manager Safe Harbor Statement The following is intended to outline our general product direction.

More information

In the Oracle Database 12c: Performance Management and

In the Oracle Database 12c: Performance Management and Oracle Uni Contact Us: 08 Oracle Database 12c: Performance Management a Durat5 Da What you will learn In the Oracle Database 12c: Performance Management and analysis and tuning tasks expected of a DBA:

More information

Connecting your Microservices and Cloud Services with Oracle Integration CON7348

Connecting your Microservices and Cloud Services with Oracle Integration CON7348 Connecting your Microservices and Cloud Services with Oracle Integration CON7348 Robert Wunderlich Sr. Principal Product Manager September 19, 2016 Copyright 2016, Oracle and/or its affiliates. All rights

More information

Katharina Römer Principal Sales Consultant STCC Stuttgart ORACLE Deutschland GmbH

Katharina Römer Principal Sales Consultant STCC Stuttgart ORACLE Deutschland GmbH Katharina Römer Principal Sales Consultant STCC Stuttgart ORACLE Deutschland GmbH Performance Diagnosis Demystified: Best Practices for Oracle Database 10g Agenda Oracle Database 10g Performance Monitoring

More information

Oracle Database 18c and Autonomous Database

Oracle Database 18c and Autonomous Database Oracle Database 18c and Autonomous Database Maria Colgan Oracle Database Product Management March 2018 @SQLMaria Safe Harbor Statement The following is intended to outline our general product direction.

More information

Announcing Oracle Secure Backup 10.3: Fastest, Most Cost-Effective Oracle Backup

Announcing Oracle Secure Backup 10.3: Fastest, Most Cost-Effective Oracle Backup Announcing Oracle Secure Backup 10.3: Fastest, Most Cost-Effective Oracle Backup Donna Cooksey Principal Product Manager Richard McClain Senior Oracle DBA CSX Technology Program Agenda Introducing Oracle

More information

PL/SQL Programming for.net Developers: Tips, Tricks, and Debugging. Christian Shay Product Manager, Oracle

PL/SQL Programming for.net Developers: Tips, Tricks, and Debugging. Christian Shay Product Manager, Oracle 1 PL/SQL Programming for.net Developers: Tips, Tricks, and Debugging Christian Shay Product Manager, Oracle Program Agenda PL/SQL Development Lifecycle in VS Using PL/SQL with ODP.NET Introduction PL/SQL

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Oracle Performance Tuning Boot Camp: 10 New Problem- Solving Tips Using ASH & AWR Debaditya Chatterjee Vitor Promeet Mansata 2 3 types of Performance Management Reactive Performance Management Proactive

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 8

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 8 1 Copyright 2011, Oracle and/or its affiliates. All rights Insert Information Protection Policy Classification from Slide 8 2 Copyright 2011, Oracle and/or its affiliates. All rights Presenting with Session

More information

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

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

More information

Optimize Your Databases Using Foglight for Oracle s Performance Investigator

Optimize Your Databases Using Foglight for Oracle s Performance Investigator Optimize Your Databases Using Foglight for Oracle s Performance Investigator Solve performance issues faster with deep SQL workload visibility and lock analytics Abstract Get all the information you need

More information

Take Your Oracle WebLogic Applications to The Next Level with Oracle Enterprise Manager 12c

Take Your Oracle WebLogic Applications to The Next Level with Oracle Enterprise Manager 12c Take Your Oracle WebLogic Applications to The Next Level with Oracle Enterprise Manager 12c Mojahedul Hoque Abul Hasanat CTO, Therap Services Neelima Bawa Consulting Tech. Lead, SCP, EM, Oracle Therap

More information

Anthony AWR report INTERPRETATION PART I

Anthony AWR report INTERPRETATION PART I Anthony AWR report INTERPRETATION PART I What is AWR? AWR stands for Automatically workload repository, Though there could be many types of database performance issues, but when whole database is slow,

More information

Oracle 10g Self-Management Framework Internals: Exploring the Automatic Workload Repository. Open World September 2005

Oracle 10g Self-Management Framework Internals: Exploring the Automatic Workload Repository. Open World September 2005 Oracle 10g Self-Management Framework Internals: Exploring the Automatic Workload Repository Open World September 2005 Oracle 10g Self-Management Framework Internals: Exploring the Automatic Workload Repository

More information

OWB Tuning. Methods to tune OWB mappings and flows that leverage your existing Oracle tuning expertise!

OWB Tuning. Methods to tune OWB mappings and flows that leverage your existing Oracle tuning expertise! OWB Tuning Methods to tune OWB mappings and flows that leverage your existing Oracle tuning expertise! 1 Need - Common Situation System loads 100k records daily with no apparent issues (2 hour load time)

More information

Maximum Availability Architecture (MAA): Oracle E-Business Suite Release 12

Maximum Availability Architecture (MAA): Oracle E-Business Suite Release 12 1 2 Maximum Availability Architecture (MAA): E-Business Suite Release 12 Richard Exley High Availability Systems and Maximum Availability Architecture Group Server Technologies Metin

More information

Oracle WebCenter Portal Performance Tuning

Oracle WebCenter Portal Performance Tuning ORACLE PRODUCT LOGO Oracle WebCenter Portal Performance Tuning Rich Nessel - Principal Product Manager Christina Kolotouros - Product Management Director 1 Copyright 2011, Oracle and/or its affiliates.

More information

Fit for Purpose Platform Positioning and Performance Architecture

Fit for Purpose Platform Positioning and Performance Architecture Fit for Purpose Platform Positioning and Performance Architecture Joe Temple IBM Monday, February 4, 11AM-12PM Session Number 12927 Insert Custom Session QR if Desired. Fit for Purpose Categorized Workload

More information

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

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

More information

DBAs can use Oracle Application Express? Why?

DBAs can use Oracle Application Express? Why? DBAs can use Oracle Application Express? Why? 20. Jubilarna HROUG Konferencija October 15, 2015 Joel R. Kallman Director, Software Development Oracle Application Express, Server Technologies Division Copyright

More information

Learning Objectives : This chapter provides an introduction to performance tuning scenarios and its tools.

Learning Objectives : This chapter provides an introduction to performance tuning scenarios and its tools. Oracle Performance Tuning Oracle Performance Tuning DB Oracle Wait Category Wait AWR Cloud Controller Share Pool Tuning 12C Feature RAC Server Pool.1 New Feature in 12c.2.3 Basic Tuning Tools Learning

More information

Mobile Application Development: Introducing ADF Mobile Native Client Framework

Mobile Application Development: Introducing ADF Mobile Native Client Framework Mobile Application Development: Introducing ADF Mobile Native Client Framework Denis Tyrell, Senior Director of Product Development, ADF/JDeveloper Joe Huang, Senior Principal Product Manager, ADF/JDeveloper

More information

<Insert Picture Here>

<Insert Picture Here> 1 Session 226 Oracle Support Update for Linux on System z Collaborate13 April 7-11 2013, Denver, Colorado Damian Gallagher Senior Technical Lead, Linux on IBM System Z Support The

More information

Power your cloud infrastructure with Oracle VM and Cisco!

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

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Course Code: OC11PTDBAR2 Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 11g: Performance Tuning DBA Release 2 Overview This course starts with an unknown database that requires tuning.

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Oracle University Contact Us: +65 6501 2328 Oracle Database 11g: Performance Tuning DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g Performance Tuning training starts with an

More information

1Z Oracle Database Performance and Tuning Essentials 2015 Exam Summary Syllabus Questions

1Z Oracle Database Performance and Tuning Essentials 2015 Exam Summary Syllabus Questions 1Z0-417 Oracle Database Performance and Tuning Essentials 2015 Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-417 Exam on Oracle Database Performance and Tuning Essentials 2015...

More information

ORACLE DIAGNOSTICS PACK

ORACLE DIAGNOSTICS PACK ORACLE DIAGNOSTICS PACK KEY FEATURES AND BENEFITS: Automatic Performance Diagnostic liberates administrators from this complex and time consuming task, and ensures quicker resolution of performance bottlenecks.

More information

Oracle Database B

Oracle Database B Oracle Database 2 Day + Performance Tuning Guide 10g Release 2 (10.2) B28051-01 November 2006 Easy, Automatic, and Step-By-Step Performance Tuning Using Oracle Diagnostics Pack, Oracle Database Tuning

More information

FlexPod. The Journey to the Cloud. Technical Presentation. Presented Jointly by NetApp and Cisco

FlexPod. The Journey to the Cloud. Technical Presentation. Presented Jointly by NetApp and Cisco FlexPod The Journey to the Cloud Technical Presentation Presented Jointly by NetApp and Cisco Agenda Alliance Highlights Introducing FlexPod One Shared Vision and Journey FlexPod for the Oracle base base

More information

<Insert Picture Here> Consolidate Oracle Applications on Oracle Exadata

<Insert Picture Here> Consolidate Oracle Applications on Oracle Exadata 1 Consolidate Oracle Applications on Oracle Exadata Richard Exley Consulting Member of Technical Staff, Exadata Development Consolidate Oracle Applications on Oracle Exadata Agenda

More information

PERFORMANCE TUNING TRAINING IN BANGALORE

PERFORMANCE TUNING TRAINING IN BANGALORE PERFORMANCE TUNING TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAINININGBANGALORE.COM Oracle Database 11g: Performance

More information

Welcome to the Oracle Enterprise Manager Technical Webcast Series

Welcome to the Oracle Enterprise Manager Technical Webcast Series 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 US/Canada : ( 888 ) 794-4691

More information

Storage Monitoring Made Easy for DBAs: Diagnosing Performance Problems. Senior Product Manager Consulting Member of Technical Staff

Storage Monitoring Made Easy for DBAs: Diagnosing Performance Problems. Senior Product Manager Consulting Member of Technical Staff Storage Monitoring Made Easy for DBAs: Diagnosing Performance Problems Anirban Chatterjee Sriram Palapudi Senior Product Manager Consulting Member of Technical Staff The following is intended to outline

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

Oracle EXAM - 1Z Oracle Database 11g: Performance Tuning. Buy Full Product.

Oracle EXAM - 1Z Oracle Database 11g: Performance Tuning. Buy Full Product. Oracle EXAM - 1Z0-054 Oracle Database 11g: Performance Tuning Buy Full Product http://www.examskey.com/1z0-054.html Examskey Oracle 1Z0-054 exam demo product is here for you to test the quality of the

More information

Table of Contents HOL-PRT-1463

Table of Contents HOL-PRT-1463 Table of Contents Lab Overview - - vcenter Operations Manager Management Pack for Oracle Enterprise Manager... 2 Lab Guidance... 3 Module 1 - Oracle Enterprise Manager Management Pack Introduction (15

More information

What s New for.net Developers in Oracle Database

What s New for.net Developers in Oracle Database What s New for.net Developers in Oracle Database Alex Keh Christian Shay Product Managers Server Technologies September 22, 2016 Program Agenda 1 2 3 4 5 Release Timelines ODAC 12c Release 4 Cloud Oracle

More information

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

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

More information

Bringing OpenStack to the Enterprise. An enterprise-class solution ensures you get the required performance, reliability, and security

Bringing OpenStack to the Enterprise. An enterprise-class solution ensures you get the required performance, reliability, and security Bringing OpenStack to the Enterprise An enterprise-class solution ensures you get the required performance, reliability, and security INTRODUCTION Organizations today frequently need to quickly get systems

More information

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Getting Started with Oracle and.net Alex Keh Senior Principal Product Manager Program Agenda Oracle and Microsoft Oracle and.net Getting Started Oracle Developer Tools for Visual Studio Oracle Data Provider

More information

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

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

More information

<Insert Picture Here> Linux: The Journey, Milestones, and What s Ahead Edward Screven, Chief Corporate Architect, Oracle

<Insert Picture Here> Linux: The Journey, Milestones, and What s Ahead Edward Screven, Chief Corporate Architect, Oracle Linux: The Journey, Milestones, and What s Ahead Edward Screven, Chief Corporate Architect, Oracle SAFE HARBOR STATEMENT The following is intended to outline our general product direction.

More information

SQL Tuning for Expert DBAs

SQL Tuning for Expert DBAs SQL Tuning for Expert DBAs GP (Gongloor Prabhaker) Senior Director of Product Management Oracle Management Cloud, Oracle Corporation Konstantin Kerekovski, DBA, Raymond James Financial Inc. Oct 03, 2017

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

An Oracle White Paper June Managing Oracle Exadata with Oracle Enterprise Manager 12c

An Oracle White Paper June Managing Oracle Exadata with Oracle Enterprise Manager 12c An Oracle White Paper June 2012 Managing Oracle Exadata with Oracle Enterprise Manager 12c Executive Overview... 1 Introduction... 2 Oracle Exadata Database Machine... 3 Managing Oracle Exadata... 4 Setup

More information

Real-World Performance Training Extreme OLTP Performance

Real-World Performance Training Extreme OLTP Performance Real-World Performance Training Extreme OLTP Performance Real-World Performance Team Extreme OLTP Workloads Small transactions Processing small numbers of rows Fast (single-digit millisecond) response

More information

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

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

More information

Oracle Enterprise Manager 12 c : ASH in 3D

Oracle Enterprise Manager 12 c : ASH in 3D Oracle Enterprise Manager 12 c : ASH in 3D Deba Chatterjee and John Beresniewicz, Oracle Anton Topurov, CERN Agenda The DB Time Data Cube What is DB Time? ASH fundamentals Populating

More information

<Insert Picture Here> Application-Aware Virtualization

<Insert Picture Here> Application-Aware Virtualization 1 lication-aware Virtualization Shail Goel Principal Product Manager Oracle Virtual Assembly Builder Shail Goel, Principal Product Manager, Oracle Virtual Assembly Builder Anand Rudrabhatla,

More information

What s New for Oracle Database 11gR2 on Windows?

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

More information

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

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

More information

Javaentwicklung in der Oracle Cloud

Javaentwicklung in der Oracle Cloud Javaentwicklung in der Oracle Cloud Sören Halter Principal Sales Consultant 2016-11-17 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

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

Oracle Enterprise Manager Configuration Management Unleashed: Top 10 Expert Tips

Oracle Enterprise Manager Configuration Management Unleashed: Top 10 Expert Tips Session # S316978 Oracle Enterprise Manager Configuration Management Unleashed: Top 10 Expert Tips Sudip Datta & Andy Oppenheim Enterprise Manager, Product Management Oracle Corporation Gregg Grimes Database

More information

Oracle Database and Application Solutions

Oracle Database and Application Solutions Oracle Database and Application Solutions Overview The success of Oracle s products is based on three principles: Simplify Enterprises must increase the speed of information delivery with Integrated Systems,

More information

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

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

More information

Solaris Engineered Systems

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

More information