Best Practices for Performance Part 1.NET and Oracle Database

Size: px
Start display at page:

Download "Best Practices for Performance Part 1.NET and Oracle Database"

Transcription

1

2 Best Practices for Performance Part 1.NET and Oracle Database Alex Keh Christian Shay Product Managers Server Technologies September 19, 2016

3 Program Agenda Optimization Process ODP.NET Performance Part 2 Preview Q+A 3

4 Optimization Process End to End Oracle.NET performance management 4

5 Oracle.NET Application Performance Optimization Steps.NET data access tuning Use ODP.NET best practices SQL tuning Use SQL Tuning Advisor in Visual Studio Database tuning under real world conditions Oracle Performance Analyzer in Visual Studio detects issues you have missed May need to modify application based on findings Can be used during testing phase or production

6 Optimizing ODP.NET Performance ODP.NET 6

7 General All ODP.NET Objects Close/Dispose all ODP.NET objects explicitly Garbage collector cannot reliably implicitly dispose objects under heavy load May see increasing memory usage Can use Using statement instead Recommended for all ODP.NET objects 7

8 Connections Use connection pooling Min Pool Size = # connections at steady state or average load Max Pool Size = # connections at maximum capacity Min and Max Pool Size always obeyed over other CP attributes See documentation for connection pooling parameter options ODP.NET performance counters Monitor with Windows Performance Monitor More granularity in monitoring New in ODAC 12c Monitor at app domain, pool, or DB instance level See documentation for details on how to enable Confidential Oracle Internal/Restricted/Highly Restricted 8

9 Connections New in ODAC 12.2 Connection pool tagging Identify connections with specific settings using tags i.e. American users or French users i.e. gold customers or platinum customers ODP.NET searches pool for matching tag and retrieves that connection to be opened No round trips to set session settings for every new connection Database Resident Connection Pooling (DRCP) Server side connection pool that optimizes memory use Pools "dedicated" servers Confidential Oracle Internal/Restricted/Highly Restricted 9

10 New.NET Features Upcoming Session OOW session: What s New for.net Developers in Oracle Database Thursday, Sep 22, 1:15 PM Park Central Hotel Concordia Room 10

11 Connection Management RAC, Data Guard, GoldenGate, and GDS Fast Application Notification (FAN) infrastructure ODP.NET 12c (mostly) uses Oracle Notification Service (ONS) ONS delivers FAN events faster than previous AQ infrastructure Run-time connection load balancing Automated load balancing at connection dispense time Better performance because dispense based on real-time load Set Load Balancing = true in connection string Now the default in ODP.NET

12 Connection Management High Availability Fast Connection Failover Severed connections and returned connections automatically removed from pool End users no longer receive invalid connections after a failure Works for planned and unplanned outages Set HA Events = true in connection string Now the default in ODP.NET 12.2 For Data Guard switchover ODP.NET ServiceRelocationConnectionTimeout setting pauses incoming connection requests until standby is up End users will not see connection timeout errors 12

13 More HA Connection Management OOW session: Best Practices for High Availability:.NET and Oracle Database session Thursday, Sep 22, 2:30 PM Park Central Hotel Concordia Room 13

14 Oracle Client Performance Tips Tuning Options Set Outside ODP.NET Server side connection pooling types Dedicated server Shared server Database Resident Connection Pooling (DRCP) New for ODAC 12.2c Connect time load balancing Connects to least loaded instance/database when pool is created 14

15 Oracle Client Performance Tips Tuning Options Set Outside ODP.NET Oracle Net Services packet size Optimize connection s Session Data Unit (SDU) size Increase DEFAULT_SDU_SIZE in SQLNET.ORA or SDU in TNSNAMES.ORA If SDU settings between client and server do not match, lower value will be used OOW session: Best Practices for Oracle Database Performance on Windows Monday, Sep 19, 5:30 PM Park Central Hotel Olympic Room 15

16 Commands Bind Variables Prevents re-parsing of frequently executed statements Works with SQL and PL/SQL statements Improves subsequent command executions Literal value changes forces a re-parse and re-optimization Literal values should become bind variables Executed statements stored in Oracle shared pool Re-parsing and re-optimization uses CPU and requires shared pool locks 16

17 Commands Statement Caching Retains previously parsed statement in shared pool Prevents repeated parsing in server Caches most recently used statements Works with SQL and PL/SQL statements Best with bind variables Self-tuned cache size on by default No code changes needed 17

18 Commands Data Retrieval Control how much data is retrieved per DB roundtrip Too much data retrieved excessive client-side memory used Too little data retrieved additional round trips Use OracleCommand.RowSize and OracleDataReader.FetchSize to control result size RowSize populated after statement execution Can be set dynamically at run-time FetchSize can be set as multiple of RowSize 18

19 D E M O N S T R A T I O N Fetch Size and Row Size

20 Commands Data Updates Statement batching Use OracleDataAdapter.UpdateBatchSize to batch updates from DataSet Execute multiple commands in one DB roundtrip By using anonymous PL/SQL 20

21 Commands Mass Data Movement with Arrays PL/SQL associative arrays Pass large amounts of data between.net and DB of the same data type Use parameter array binding Useful if executing the same statement multiple times Bind variables are the same, variable values can be different One execution for each element in the bound array 21

22 Promotable Transactions Promote local transactions to distributed at run time Better application performance Lower resource usage On by default Requirements Requires Oracle Database 11g ( ) and ODAC Subsequent connections to any other version or database 22

23 REF Cursors OracleRefCursor class Defers result set retrieval until needed Retrieve data as needed Control data retrieved via FetchSize Fill a DataSet with just a portion of the REF Cursor result Usage Can create REF Cursors as part of an anonymous PL/SQL block Can return REF Cursors from stored procedures Can pass REF Cursors to database as input stored procedure parameters 23

24 SecureFiles and LOBs Data retrieval options Control amount of data returned with OracleCommand.InitialLOBFetchSize Retrieve a chunk using OracleClob and OracleBlob classes Read method Use Search method to find data to be retrieved Update/Insert/Delete SQL statements acting on LOBs Modify LOB without retrieving the data to the client side Uses LOB locator VARCHAR2, NVARCHAR2, and RAW now support up to 32 KB ODP.NET 12c and Oracle DB 12c enhancement 24

25 Coming Up in Best Practices Part 2 Thursday, Sep 22, 10:45 a.m. Marriott Marquis - Salon 10/11 25

26 Oracle.NET Caching Solutions Oracle.NET client-side DB caches Client Result Cache Continuous Query Notification (CQN) TimesTen In-Memory Database 26

27 Tuning with Oracle Developer Tools For Visual Studio Oracle Performance Analyzer SQL Tuning Advisor

28 Come See the SQL I mean, Sequel ;-) Coming to an OpenWorld Near You OOW session: Best Practices for Performance Part 2:.NET and Oracle Database Thursday, Sep 22, 10:45 AM Marriott Marquis Hotel - Salon 10/11 Rooms 28

29 Additional Oracle.NET Resources OTN otn.oracle.com/dotnet Twitter twitter.com/oracledotnet YouTube youtube.com/oracledotnetteam and

30 Upcoming.NET Sessions Meet the Oracle Programming and Scripting Experts Tuesday 6:15 PM Moscone South Best Practices for Performance Part 2:.NET and Oracle Database Thursday- 10:45 AM Marriott Marquis - Salon 10/11 PL/SQL Programming for.net Developers: Tips, Tricks, and Debugging Thursday 12:00 PM Marriott Marquis - Salon 10/11 What s New for.net Developers in Oracle Database Thursday 1:15 PM Park Central - Concordia Best Practices for High Availability:.NET and Oracle Database Thursday 1:15 PM Park Central Concordia

31 Demogrounds Visit Windows experts at the Demogrounds: Oracle Database 12c:.NET Development and Windows Platform Integration Today through Wednesday Moscone South Exhibition Hall, far left by walkway Booth SDB-003

32 Q&A 32

33 Safe Harbor Statement The preceding 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. 33

34 34

35

Best Practices for Performance

Best Practices for Performance Best Practices for Performance.NET and Oracle Database Alex Keh Senior Principal Product Manager Oracle October 4, 2017 Christian Shay Senior Principal Product Manager Oracle Program Agenda 1 2 3 4 Optimization

More information

Oracle and.net: Best Practices for Performance. Christian Shay & Alex Keh Product Managers Oracle October 28, 2015

Oracle and.net: Best Practices for Performance. Christian Shay & Alex Keh Product Managers Oracle October 28, 2015 Oracle and.net: Best Practices for Performance Christian Shay & Alex Keh Product Managers Oracle October 28, 2015 Oracle Confidential Internal/Restricted/Highly Restricted Program Agenda 1 2 3 4 Optimization

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

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

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

Oracle and.net Introduction and What s New. Copyright 2017, Oracle and/or its affiliates. All rights reserved.

Oracle and.net Introduction and What s New. Copyright 2017, Oracle and/or its affiliates. All rights reserved. Oracle and.net Introduction and What s New Alex Keh Senior Principal Product Manager Oracle Christian Shay Senior Principal Product Manager Oracle Program Agenda 1 2 3 4 Getting Started Oracle Database

More information

Getting Started with Oracle and.net

Getting Started with Oracle and.net Getting Started with Oracle and.net Alex Keh Senior Principal Product Manager Server Technologies November 17, 2015 Program Agenda 1 2 3 4 5 Oracle and Microsoft Oracle and.net Getting Started Oracle Developer

More information

Getting Started with Oracle and.net

Getting Started with Oracle and.net Getting Started with Oracle and.net Christian Shay Product Manager Oracle Eric Courville Senior Member of Technical Staff Verizon Oracle Confidential Internal/Restricted/Highly Restricted Program Agenda

More information

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 What s New For Oracle and.net Alex Keh Senior Principal Product Manager Program Agenda Supported Oracle Database 12c Features Oracle Multitenant High Availability and Scalability Ease of Use and Application

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 What s New For Oracle and.net Alex Keh, Christian Shay Principal Product Managers, Oracle 2 Program Agenda ODAC Release Schedule Visual Studio 2012 and.net Framework 4.5 Schema Compare Tools Pluggable

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 Getting Started with Oracle and.net Christian Shay Principal Product Manager, Oracle 2 Copyright 2011, Oracle and/or its affiliates. All rights

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

<Insert Picture Here> Getting Started with Oracle and.net

<Insert Picture Here> Getting Started with Oracle and.net 1 Getting Started with Oracle and.net Alex Keh Principal Product Manager, Oracle Program Agenda Oracle and Microsoft partnership Oracle and.net getting started Latest features and

More information

Using.NET Core and Entity Framework Core Linux/Windows with Oracle Database

Using.NET Core and Entity Framework Core Linux/Windows with Oracle Database Using.NET Core and Entity Framework Core Linux/Windows with Oracle Database Alex Keh Senior Principal Product Manager Server Technologies October 23, 2018 Program Agenda 1 2 3 4 ODP.NET Core Production

More information

<Insert Picture Here> What's New for.net Developers for Oracle Database

<Insert Picture Here> What's New for.net Developers for Oracle Database 1 What's New for.net Developers for Oracle Database Alex Keh Principal Product Manager, Oracle Program Agenda Currently available Visual Studio 2010 and.net Framework 4 ODAC 11.2

More information

What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud

What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud Santanu Datta Vice President Database Technologies Alex Keh Senior Principal Product Manager Database Technologies Oracle Confidential

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

<Insert Picture Here> Scale your PHP Application to Tens of Thousands of Connections

<Insert Picture Here> Scale your PHP Application to Tens of Thousands of Connections Scale your PHP Application to Tens of Thousands of Connections Srinath Krishnaswamy Director, Data Access Development, Oracle Corp. Luxi Chidambaran Consulting Member of Technical

More information

Pro ODP.NET for Oracle. Database 11 g. Edmund Zehoo. Apress

Pro ODP.NET for Oracle. Database 11 g. Edmund Zehoo. Apress Pro ODP.NET for Oracle Database 11 g Edmund Zehoo Apress Contents Contents at a Glance iv Contents....v About the Author About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction

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

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

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 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Oracle Data Guard 12c Zero Data Loss at Any Distance Joseph Meeks Director of Product Management, Oracle Madhu Tumma Technology Director, J P Morgan Chase 2 Program Agenda Zero Data Loss Disaster Protection

More information

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

<Insert Picture Here> Maximizing Database Performance: Performance Tuning with DB Time 1 Maximizing Database Performance: Performance Tuning with DB Time Kurt Engeleiter, John Beresniewicz, Cecilia Gervasio Oracle America The following is intended to outline our general

More information

NoSQL + SQL = MySQL Get the Best of Both Worlds

NoSQL + SQL = MySQL Get the Best of Both Worlds NoSQL + SQL = MySQL Get the Best of Both Worlds Jesper Wisborg Krogh Senior Principal Technical Support Engineer Oracle, MySQL Support October 22, 2018 NEXT 15-MINUTE BRIEFING NoSQL + SQL = MySQL Safe

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 Insert Information Protection Policy Classification from Slide 13 Active Directory and Windows Security Integration with Oracle Database Santanu Datta Christian Shay Mark Wilcox VP, Development Principal

More information

2008 Oracle Corporation

2008 Oracle Corporation Building and Deploying Web-scale Social Networking Application, Using PHP and Oracle Database Srinath Krishnaswamy, Director, Oracle Corp. Levi Dixon, Senior Architect, Community Connect Nicolas Tang,

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 Net Services 12c Best Practices for Database Performance and Scalability

Oracle Net Services 12c Best Practices for Database Performance and Scalability Oracle Net Services 12c Best Practices for Database Performance and Scalability Kant C Patel Director Oracle Net Program Agenda Overview of Oracle Net Why Optimize Oracle Net? Best Practices Database Client

More information

Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases

Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases Oracle Recovery Manager Tips and Tricks for On-Premises and Cloud Databases CON6677 Marco Calmasini Sr. Principal Product Manager, Oracle Gagan Singh, Sr. Database Architect, Intel Copyright 2017, Oracle

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 reserved. BI Publisher Anatomy of a Template (15010) Mike Donohue Director, BI Product Management 2 Copyright 2011, Oracle and/or its affiliates.

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

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

ZDLRA High Availability for Backup and Recovery

ZDLRA High Availability for Backup and Recovery ZDLRA High Availability for Backup and Recovery Oracle Server Technology High Availability Systems Development Maximum Availability Architecture September 2018 Safe Harbor Statement The following is intended

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 Optimize Java Persistence/Scale Database Access with JDBC and Oracle Universal Connection Pool Ashok Shivarudraiah & Tong Zhou 2 Copyright 2011,

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

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

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 reserved. Recovery Manager (RMAN): Not Just for Backups Anymore Steven Wertheimer, Oracle, Senior Director Jeff Branan, TDS Telecom, Database

More information

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

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

Press Release Writing Tips and Tricks for the Enterprise Technology Space

Press Release Writing Tips and Tricks for the Enterprise Technology Space A webinar for Press Release Writing Tips and Tricks for the Enterprise Technology Space Julie Sugishita Corporate Communications Manager Oracle May 19, 2016 julie.sugishita@oracle.com https://www.linkedin.com/in/juliesugishita

More information

Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option

Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option Eric Rudie Master Principal Sales Consultant Oracle Public Sector 27 September 2016 Safe Harbor Statement The

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

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

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

OpenWorld Supply Orchestration Troubleshooting Tips For Supply Chain Management Cross Functional Flows

OpenWorld Supply Orchestration Troubleshooting Tips For Supply Chain Management Cross Functional Flows OpenWorld 2018 Supply Orchestration Troubleshooting Tips For Supply Chain Management Cross Functional Flows Ashish Pachauri Senior Technical Support Engineer Oracle Support, Fusion Application Support

More information

Putting Oracle Database 11g to Work for Java. Kuassi Mensah Group Product Manager, Java Platform Group db360.blogspot.com

Putting Oracle Database 11g to Work for Java. Kuassi Mensah Group Product Manager, Java Platform Group db360.blogspot.com Putting Oracle Database 11g to Work for Java Kuassi Mensah Group Product Manager, Java Platform Group db360.blogspot.com The following is intended to outline our general product direction. It is intended

More information

Net Services - Best Practices for Database Performance, Scalability and High-Availability

Net Services - Best Practices for Database Performance, Scalability and High-Availability Net Services - Best Practices for Database Performance, Scalability and High-Availability Keywords: Kuassi Mensah Oracle Corporation USA Net Manager, NetCA, Net Listener, IPv6, TCP, TNS, LDAP, Logon Storm.

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

TipsandTricks. Jeff Smith Senior Principal Product Database Tools, Oracle Corp

TipsandTricks. Jeff Smith Senior Principal Product Database Tools, Oracle Corp SQLDev TipsandTricks Jeff Smith Senior Principal Product Manager Jeff.d.smith@oracle.com @thatjeffsmith Database Tools, Oracle Corp Safe Harbor Statement The preceding is intended to outline our general

More information

<Insert Picture Here> Active Directory and Windows Security Integration with Oracle Database

<Insert Picture Here> Active Directory and Windows Security Integration with Oracle Database 1 Active Directory and Windows Security Integration with Oracle Database Santanu Datta ` Christian Shay Mark Wilcox Sr. Director Principal Product Manager Principal Product Manager

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

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

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Copyright 2018, Oracle and/or its affiliates. All rights reserved. OpenWorld 2018 Tips and Tricks Session User Defined Attributes Framework Extend Your Data Capturing in R12.2 EBS Kishor Genikala Senior

More information

Data-and-Compute Intensive Processing: Middle-tier or Database? Trade-Offs and Case Study. Kuassi Mensah Marcelo Ochoa Oracle

Data-and-Compute Intensive Processing: Middle-tier or Database? Trade-Offs and Case Study. Kuassi Mensah Marcelo Ochoa Oracle Data-and-Compute Intensive Processing: Middle-tier or Database? Trade-Offs and Case Study Kuassi Mensah Marcelo Ochoa Oracle The following is intended to outline our general product direction. It is intended

More information

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

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

More information

Top Oracle Database 11g High Availability Best Practices

Top Oracle Database 11g High Availability Best Practices Top Oracle Database 11g High Availability Best Practices Joseph Meeks Director, Product Management Frank Kobylanski Principal, Technical Staff MAA Development Vinod Haval, VP Global

More information

Multitenancy and Continuous Availability for Java Applications Oracle Database 18

Multitenancy and Continuous Availability for Java Applications Oracle Database 18 Multitenancy and Continuous Availability for Java Applications Oracle Database 18 Nirmala Sundarappa Kuassi Mensah Jean De Lavarene Principal Product Manager Director of Product Management Director, Development

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

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 reserved. Re-Engineering Your Database Design with Oracle SQL Developer Data Modeler Swarnapriya Shridhar Curriculum IDC Operations Manager 2

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

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

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators

What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Presented at What every DBA needs to know about JDBC connection pools Bridging the language barrier between DBA and Middleware Administrators Jacco H. Landlust Platform Architect Director Oracle Consulting

More information

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition Understanding (12.1.0.2) Internals: The Cache Fusion Edition Subtitle Markus Michalewicz Director of Product Management Oracle Real Application Clusters (RAC) November 19th, 2014 @OracleRACpm http://www.linkedin.com/in/markusmichalewicz

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

Oracle NoSQL Database at OOW 2017

Oracle NoSQL Database at OOW 2017 Oracle NoSQL Database at OOW 2017 CON6544 Oracle NoSQL Database Cloud Service Monday 3:15 PM, Moscone West 3008 CON6543 Oracle NoSQL Database Introduction Tuesday, 3:45 PM, Moscone West 3008 CON6545 Oracle

More information

<Insert Picture Here> Oracle SQL Developer: PL/SQL Support and Unit Testing

<Insert Picture Here> Oracle SQL Developer: PL/SQL Support and Unit Testing 3 Oracle SQL Developer: PL/SQL Support and Unit Testing The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

What Are They Talking About These Days? Analyzing Topics with Graphs

What Are They Talking About These Days? Analyzing Topics with Graphs What Are They Talking About These Days? Analyzing Topics with Graphs Davide Basilio Bartolini Oracle Labs Zürich, Switzerland Damien Hilloulin

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

Oracle Multitenant What s new in Oracle Database 12c Release ?

Oracle Multitenant What s new in Oracle Database 12c Release ? Oracle Multitenant What s new in Oracle Database 12c Release 12.1.0.2? Saurabh K. Gupta Principal Technologist, Database Product Management Who am I? Principal Technologist, Database Product Management

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

Global Data Services (GDS)

Global Data Services (GDS) Global Data s (GDS) Geo-distributed Oracle GoldenGate and Active Data Guard Larry M. Carpenter Master Product Manager Oracle High Availability Systems Safe Harbor Statement The following is intended to

More information

Oracle Database In-Memory What s New and What s Coming

Oracle Database In-Memory What s New and What s Coming Oracle Database In-Memory What s New and What s Coming Andy Rivenes Product Manager for Database In-Memory Oracle Database Systems DOAG - May 10, 2016 #DBIM12c Safe Harbor Statement The following is intended

More information

Oracle APEX 18.1 New Features

Oracle APEX 18.1 New Features Oracle APEX 18.1 New Features May, 2018 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Application High Availability with Oracle

Application High Availability with Oracle Application High Availability with Oracle Aychin Gasimov 02/2014 Application High Availability Application must be able to provide uninterrupted service to its end users. Application must be able to handle

More information

Optimize Java Persistence, Scale and Failover Connections with JDBC and UCP

Optimize Java Persistence, Scale and Failover Connections with JDBC and UCP Optimize Java Persistence, Scale and Failover Connections with JDBC and UCP Keywords: Kuassi Mensah Oracle Corporation USA Java persistence, JDBC, Universal Connection Pool, RAC, Data Guard, Fast Connection

More information

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

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

More information

Oracle SQL Developer & REST Data Services

Oracle SQL Developer & REST Data Services Oracle SQL Developer & REST Data Services What s New Jeff Smith Senior Principal Product Manager Database Development Tools Jeff.d.smith@oracle.com @thatjeffsmith http://www.thatjeffsmith.com Agenda New

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 Best Practices for Oracle Database Performance on Windows Christian Shay Product Manager Oracle Database on Windows 2 The following is intended to outline our general product direction. It is intended

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

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

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

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

Personalized Experiences Enabled Through Extensibility

Personalized Experiences Enabled Through Extensibility Personalized Experiences Enabled Through Extensibility Vikram Kaledhonkar Principal Product Manager Oracle Copyright 2014 Oracle and/or its affiliates. All rights reserved. Spread the Word about the Event!

More information

Oracle Database 11g Production Case Study: Porting to Oracle Database 11 - Tips, Techniques, and Experiences

Oracle Database 11g Production Case Study: Porting to Oracle Database 11 - Tips, Techniques, and Experiences Oracle Database 11g Production Case Study: Porting to Oracle Database 11 - Tips, Techniques, and Experiences Marcel Kratochvil, CTO Piction Digital Image Systems Susan Mavris, Director, Oracle Multimedia

More information

<Insert Picture Here> Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database

<Insert Picture Here> Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database 2007 Oracle 1 2007 Oracle 2 Maximum Availability Architecture (MAA) Best Practices: Online Patching and Rolling Upgrades with Oracle Database Ray Dutcher, Maximum Availability Architecture,

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

<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

Pega 7 Webinar Series

Pega 7 Webinar Series Pega 7 Webinar Series Achieve the Highest Levels of Availability, Scalability and Performance Mark Replogle Ken Schwarz October 16, 2013 Pega 7 Webinar Series 01 The Power to Simplify Pega 7 Overview Thursday,

More information

Develop Python Applications with MySQL Connector/Python DEV5957

Develop Python Applications with MySQL Connector/Python DEV5957 Develop Python Applications with MySQL Connector/Python DEV5957 Jesper Wisborg Krogh Senior Principal Technical Support Engineer Oracle MySQL Support October 24, 2018 Safe Harbor Statement The following

More information

Toad as a SQL Tuning Tool. With Dan Hotka - Oracle ACE Director

Toad as a SQL Tuning Tool. With Dan Hotka - Oracle ACE Director Toad as a SQL Tuning Tool With Dan Hotka - Oracle ACE Director Dan Hotka Oracle ACE Director Training Consultant Published author Training Courses Include: Oracle Advanced PL/SQL Oracle SQL Tuning TOAD

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

Sessions Related to Database High Availability

Sessions Related to Database High Availability Sessions Related to Database High Availability Monday, September 20 S318964 General Session: Why Standardize on Oracle Database 11g? Monday, September 20, 11:00 am 12:00 pm, Moscone North, Hall D Why are

More information

Best Practices for Speeding and Scaling Java Applications Oracle Database 18

Best Practices for Speeding and Scaling Java Applications Oracle Database 18 Best Practices for Speeding and Scaling Java Applications Oracle Database 18 Nirmala Sundarappa, Principal Product Manager Kuassi Mensah, Director of Product Management, Jean De Lavarene, Director of Development

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

A RESTful Java Framework for Asynchronous High-Speed Ingest

A RESTful Java Framework for Asynchronous High-Speed Ingest A RESTful Java Framework for Asynchronous High-Speed Ingest Pablo Silberkasten Jean De Lavarene Kuassi Mensah JDBC Product Development October 5, 2017 3 Safe Harbor Statement The following is intended

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

SQLDevTipsTricks. Jeff Smith Senior Principal Product Database Tools, Oracle Corp

SQLDevTipsTricks. Jeff Smith Senior Principal Product Database Tools, Oracle Corp JEFF SQLDevTipsTricks Jeff Smith Senior Principal Product Manager Jeff.d.smith@oracle.com @thatjeffsmith Database Tools, Oracle Corp Safe Harbor Statement The preceding is intended to outline our general

More information

Cloud Consolidation with Oracle (RAC) How much is too much?

Cloud Consolidation with Oracle (RAC) How much is too much? 1 Copyright 11, Oracle and/or its affiliates All rights reserved Cloud Consolidation with Oracle (RAC) How much is too much? Markus Michalewicz Senior Principal Product Manager Oracle RAC, Oracle America

More information