Oracle Database 11g: Real Application Testing

Size: px
Start display at page:

Download "Oracle Database 11g: Real Application Testing"

Transcription

1

2 <Insert Picture Here> Oracle Database 11g: Real Application Testing Katharina Römer Principal Sales Consultant

3 Oracle Database 11g: Real Application Testing SQL Performance Analyzer Database Replay <Insert Picture Here>

4 Why Real Application Testing? Businesses want to adopt new technology Extensive testing and validation is expensive Despite extensive testing success rate low Many issues go undetected System availability and performance are negatively impacted Cause of low success rate Current tools provide inadequate testing Simulate unrealistic synthetic workload Provide partial workflow coverage Real-Application Testing makes real-world testing possible

5 Realistic Testing: SQL Performance Analyzer <Insert Picture Here>

6 SQL Performance Analyzer Identify the benefits of using SQL Performance Analyzer Describe the SQL Performance Analyzer workflow phases Use SQL Performance Analyzer to ascertain performance changes following a database change

7 Realistic Testing: Real Application Testing 1. USE SQL PERFORMANCE ANALYZER FOR SQL RESPONSE TIME AND UNIT TESTING DONE? Yes No 2. USE DATABASE REPLAY FOR LOAD AND CONCURRENCY TESTING DONE? Yes No DEPLOY CHANGES AND ONGOING TUNING

8 SQL Performance Analyzer: Overview Targeted users: DBAs, QAs, application developers Helps predict the impact of system changes on SQL workload response time Builds different versions of SQL workload performance (that is, SQL execution plans and execution statistics) Executes SQL serially (concurrency not honored) Analyzes performance differences Offers fine-grained performance analysis on individual SQL Is integrated with SQL Tuning Advisor and SQL Plan Management to tune regressions

9 SQL Performance Analyzer: Use Cases Database upgrades Implementation of tuning recommendations Schema changes Statistics gathering Database parameter changes OS and hardware changes

10 Using SQL Performance Analyzer 1. Capture SQL workload on production 2. Transport the SQL workload to a test system 3. Build before-change performance data 4. Make changes 5. Build after-change performance data 6. Compare results from steps 3 and 5 7. Tune regressed SQL

11 Step 1: Capture SQL Workload Cursor cache Incremental capture Database Instance SQL tuning set (STS) is used to store SQL workload. It includes: SQL Text Bind variables Execution plans Execution statistics Incremental capture is used to populate STS from the cursor cache over a period of time STS s filtering and ranking capabilities filter out undesirable SQL Production database

12 Step 2: Transport to a Test System Cursor cache Database instance Database instance Production database Test database Copy the SQL tuning set to the staging table ( pack ) Transport staging table to the test system (data pump, DB link, etc) Copy the SQL tuning set from the staging table ( unpack )

13 Step 3: Build Before-Change Performance Data Before change, SQL performance version is the SQL workload performance baseline SQL performance = Execution plans + execution statistics Test execute SQL in STS: Produce execution plans & statistics Execute one SQL statement at a time (no concurrency) Every SQL statement is executed at least twice Avoid DDL/DML effects Explain plan SQL in STS generates only SQL plans Before changes Test database Test execute Database instance

14 Step 4: Implement Planned Change & Step 5: Build After-Change Performance Data Manually implement the planned change: Database upgrade Implementation of tuning recommendations Schema changes Statistics gathering Database parameter changes OS and hardware changes Reexecute SQL after change: Test execute SQL in STS to generate SQL execution plans and statistics After changes Test database Database instance After changes implemented

15 Step 6: Compare and Analyze Performance & Step 7: Tune Regressed SQL Rely on user-specified metric to compare SQL performance: ELAPSED_TIME, BUFFER_GETS, Calculate the impact of change on individual SQLs and SQL workload: Overall impact on workload Net SQL impact on workload Use the SQL execution frequency to define a weight of importance Detect improvements, regressions, and unchanged performance Detect changes in execution plans Recommend running SQL Tuning Advisor to tune regressed SQLs The analysis results can be used to seed SQL Plan Management baselines SQL Tuning Advisor Compare analysis Improvement Test database Regression Database instance

16 Remote Test Execution 11g SQL Performance Analyzer System No application schema or data is required in the SQL Performance Analyzer database Remote databases can be different versions SPA database DB link Prod database You can maintain a single repository for many tests DB link Test database

17 Accessing SQL Performance Analyzer Use Enterprise Manager Use the DBMS_SQLPA package

18 SQL Performance Analyzer: Enterprise Manager Access SQL Performance Analyzer on the Software and Support tab Select one of the five types of workflows: Upgrade from 9i or 10.1 Upgrade from 10.2 or 11g Parameter Change Exadata Simulation Guided Workflow Tune regressing statements by invoking SQL Tuning Advisor Prevent regressions by using SQL plan baselines

19 SQL Performance Analyzer: Enterprise Manager

20 SQL Performance Analyzer: PL/SQL Example Create the tuning task: exec :tname:= dbms_sqlpa.create_analysis_task( - sqlset_name => 'MYSTS', task_name => 'MYSPA'); Execute the task to build the before-change performance data: exec dbms_sqlpa.execute_analysis_task(task_name => :tname, - execution_type => 'TEST EXECUTE', execution_name => 'before'); Produce the before-change report: SELECT dbms_sqlpa.report_analysis_task(task_name => :tname, type=>'text', section=>'summary') FROM dual;

21 SQL Performance Analyzer: PL/SQL Example After making your changes, perform the following: Create the after-change performance data: EXEC dbms_sqlpa.execute_analysis_task(task_name => :tname, - execution_type => 'TEST EXECUTE', execution_name => 'after'); Generate the after-change report: SELECT dbms_sqlpa.report_analysis_task(task_name => :tname, type=>'text', section=>'summary') FROM dual; Compare the task executions: EXEC dbms_sqlpa.execute_analysis_task(task_name => :tname, execution_type => 'COMPARE PERFORMANCE'); Generate the analysis report: SELECT dbms_sqlpa.report_analysis_task(task_name => :tname, type=>'text', section=>'summary') FROM dual;

22 Tuning Regressed SQL Statements To tune the regressed SQL statements reported by SQL Performance Analyzer, create a SQL tuning task for the SQL Performance Analyzer execution by using the DBMS_SQLTUNE.CREATE_TUNING_TASK function: BEGIN DBMS_SQLTUNE.CREATE_TUNING_TASK( spa_task_name => 'MYSPA', spa_compare_exec => 'MYCOMPEXEC'); END; /

23 Testing Database Upgrades: Oracle9i Database & Oracle Database 10g Release 1 SQL Performance Analyzer supports testing database upgrades of Oracle9i and Oracle Database 10g Release 1, to Oracle Database 10g Release 2 and later releases Execute the SQL tuning set on the upgraded database remotely over a database link The production system that you are upgrading from should be running Oracle9i or Oracle Database 10g Release 1 The test system containing the Oracle Database version that you are upgrading to, should be running Oracle Database 10g Release 2 ( ) or later Set up a separate system for SQL Performance Analyzer with Oracle Database 11g Release 1 ( ) or a later release

24 Testing Database Upgrades: Oracle9i Database & Oracle Database 10g Release 1 To use SQL Performance Analyzer in a database upgrade from Oracle9i or Oracle Database 10g Release 1 to a newer release, perform the following steps: 1. Enable the SQL trace facility on the production system Tip: Enable SQL trace only for a subset of the sessions, and only for as long as required, to capture all the important SQL statements at least once 2. On the production system, create a mapping table 3. Move the SQL trace files and the mapping table from the production system to the SQL Performance Analyzer system 4. On the SQL Performance Analyzer system, construct a SQL tuning set by using the SQL trace files

25 Testing Database Upgrades: Oracle9i Database & Oracle Database 10g Release 1 5. On the SQL Performance Analyzer system: Use SQL Performance Analyzer to create a SQL Performance Analyzer task and convert the contents in the SQL tuning set into a preupgrade SQL trial that will be used as a baseline for comparison Remotely test execute the SQL statements on the test system over a database link to build a postupgrade SQL trial 6. Compare SQL performance and fix regressed SQL statements

26 Testing Database Upgrades: Oracle Database 10g Release 2 & Later Releases SQL Performance Analyzer supports testing database upgrades of Oracle Database 10g Release 2 or a later release to any later release Capture a SQL tuning set on the production system and execute it twice remotely over a database link on a test system The production system that you are upgrading from should be running Oracle Database 10g Release 2 or a later release Initially, the test system should be running the same Oracle Database release as the production system Set up a separate system for running SQL Performance Analyzer: Oracle Database 11g Release 1 ( ) or a later release

27 Testing Database Upgrades: Oracle Database 10g Release 2 & Later Releases Perform the following steps to use SQL Performance Analyzer in a database upgrade from Oracle Database 10g Release 2 and later releases to a newer release: 1. On the production system, capture the SQL workload that you intend to analyze and store it in a SQL tuning set 2. Set up the test system such that it matches the production environment as closely as possible 3. Transport the SQL tuning set to the SQL Performance Analyzer system

28 Testing Database Upgrades: Oracle Database 10g Release 2 & Later Releases 4. On the SQL Performance Analyzer system, create a SQL Performance Analyzer task using the SQL tuning set as its input source. Remotely test execute the SQL statements on the test system to build a preupgrade SQL trial that will be used as a baseline for comparison 5. Upgrade the test system 6. Remotely test execute the SQL statements a second time on the upgraded test system over a database link to build a postupgrade SQL trial 7. Compare SQL performance and fix regressed SQL statements

29 SQL Performance Analyzer: Data Dictionary Views Modified views in Oracle Database 11g: DBA{USER}_ADVISOR_TASKS: Displays details about the analysis task DBA{USER}_ADVISOR_FINDINGS: Displays analysis findings New views in Oracle Database 11g: DBA{USER}_ADVISOR_EXECUTIONS: Lists metadata information for task execution DBA{USER}_ADVISOR_SQLPLANS: Displays the list of SQL execution plans DBA{USER}_ADVISOR_SQLSTATS: Displays the list of SQL compilation and execution statistics

30 SQL Performance Analyzer: Summary Identify the benefits of using SQL Performance Analyzer Describe the SQL Performance Analyzer workflow phases Use SQL Performance Analyzer to determine performance changes following a database change

31 SQL Performance Analyzer: Tutorial <Insert Picture Here>

32 SQL Performance Analyzer: Guided Workflow

33 SQL Performance Analyzer Task Create

34 Create SQL Trial in Initial Environment

35 Create SQL Trial in Initial Environment

36 Create SQL Trial in Changed Environment

37 Create SQL Trial in Changed Environment

38 Guided Workflow: Compare Step 2 & Step 3

39 Guided Workflow: Compare Step 2 & Step 3

40 Guided Workflow: View Trial Comparison Report

41 SQL Performance Analyzer: Comparison Report

42 Realistic Testing: Database Replay <Insert Picture Here>

43 Database Replay Identify the benefits of using Database Replay List the steps involved in using Database Replay Use Enterprise Manager to record and replay workloads

44 Why Use Database Replay? System changes (hardware, software upgrades ) are a fact of life Changes can negatively affect system availability and performance Customers want to identify the full impact of changes before going live Extensive testing and validation can be expensive in terms of time and money Despite expensive testing, success rates are low: The inability to properly test with real-world production workloads results in many issues going undetected Database Replay makes it possible to do realistic testing

45 Using Database Replay Re-create actual production database workload in the test environment Capture the workload in production: Capture full production workload with real load & concurrency Move the captured workload to the test system Replay the workload in the test environment: Make the desired changes in the test system Replay the workload with production load & concurrency Honor commit ordering Analyze and report: Errors Data divergence Performance divergence Identify and analyze potential instabilities before making changes to the production system

46 Process capture files The Big Picture Prechange production system Clients/app servers Capture directory Shadow capture file Postchange test system Replay system Shadow capture file Production system Shadow capture file Shadow capture file Test system with changes Production database Database backup Database restore Can use Snapshot Standby as test system

47 System Architecture: Capture Capture directory Shadow Shadow Shadow Shadow Recording infrastructure Database stack Shadow capture file Shadow capture file Shadow capture file Background Background Shadow capture file Database backup Production database

48 Preprocess capture files System Architecture: Workload Preprocessing Capture directory Shadow capture file Shadow capture file Database stack Shadow capture file Background Background Shadow capture file Database backup Production database Preprocess capture

49 Preprocess capture files System Architecture: Replay Replay system Replay client Replay client Capture directory Shadow Shadow Shadow Shadow Shadow capture file Shadow capture file Database stack Shadow capture file Background Background Shadow capture file Database backup Test system with changes Test database

50 Changes Supported by Database Replay Changes not supported Clients/app servers Supported changes: Database upgrades, patches Schema, parameters RAC nodes, interconnect OS platforms, OS upgrades CPU, memory Storage Production database Production system

51 Capture Considerations Ensure that there is adequate disk space for captured workload (binary files) Database restart: Is the only way to guarantee authentic replay Start the database in restricted mode Starting the capture process changes the database into normal (unrestricted) mode May not be necessary depending on the workload Following are ways to restore the database for replay: Physical restore (scn/time provided) Logical restore of application data Flashback/snapshot standby Filters can be specified to capture subset of workload SYSDBA or SYSOPER privileges and appropriate OS privileges are required

52 Capture Considerations Overhead: Performance overhead for TPC-C benchmark: 4.5% Memory overhead: 64 KB per session Disk space

53 Replay Considerations Preprocessing the captured workload: Is a one-time action Must use the same database software version as the replay system Should be conducted on a system other than the production server (recommendation) Restore database, and then perform the change: Upgrade Schema changes OS change Hardware change Instance addition

54 Replay Considerations Manage external interactions Remap connection strings to be used for the workload: One-to-one: For simple instance-to-instance remapping Many-to-one: Use of load balancer (for example, single node to RAC) Modify the DB links and directory objects that point to the production systems Set up one or more replay clients Each replay client is multithreaded and can drive multiple workload sessions

55 Replay Options Synchronized replay: Commit-based synchronization Minimal data divergence Unsynchronized replay: Useful for load/stress testing Original commit ordering not honored Possibility for high data divergence Login time options Percentage (default is 100%)

56 Replay Options Think time options: THINK_TIME_SCALE adjusts the think time to modify captured request rate: 0%: No think time (highest possible request rate) <100%: Higher request rate 100%: Exact think time >100%: Lower request rate THINK_TIME_AUTO_CORRECT automatically shortens the think time if calls execute slower in replay than during capture: The default setting is TRUE Workload scale-up during replay (SCALE_UP_MULTIPLIER): Replay captured session concurrently for specified number of times Only one session in each set of identical replay sessions will execute both queries and updates

57 Workload Replay Filters Use workload filters to specify which database calls to include in or exclude from the workload Following are the types of workload replay filters: Inclusion filter: Specifies database calls that will be replayed Exclusion filter: Specifies database calls that will not be replayed Create and use workload replay filters as follows: 1. Use DBMS_WORKLOAD_REPLAY.ADD_FILTER to define the workload replay filters 2. Use DBMS_WORKLOAD_REPLAY.CREATE_FILTER_SET to add the workload replay filters to a replay filter set 3. Use DBMS_WORKLOAD_REPLAY.USE_FILTER_SET to filter the replay

58 Replay Analysis Data divergence: Number of rows compared for each call (queries, DML) Error divergence: New errors Mutated errors Errors that have disappeared Performance: Capture and Replay report ADDM report ASH report for skew analysis AWR report

59 Database Replay Workflow: Enterprise Manager 1. Capture the workload on a database by using the Capture Workload wizard 2. Use the Capture Workload wizard to also optionally export the AWR data relating to the captured workload 3. Restore the replay database on a test system 4. Make changes to the test system as required 5. Copy the workload to the test system 6. Preprocess the captured workload by using the Preprocess Captured Workload wizard 7. Configure the test system for the replay 8. Replay the workload on the restored database by using the Replay Workload wizard

60 Accessing Database Replay

61 Packages and Procedures DBMS_WORKLOAD_CAPTURE START_CAPTURE FINISH_CAPTURE ADD_FILTER DELETE_FILTER DELETE_CAPTURE_INFO GET_CAPTURE_INFO EXPORT_AWR IMPORT_AWR REPORT DBMS_WORKLOAD_REPLAY PROCESS_CAPTURE INITIALIZE_REPLAY PREPARE_REPLAY START_REPLAY CANCEL_REPLAY DELETE_REPLAY_INFO REMAP_CONNECTION EXPORT_AWR IMPORT_AWR GET_REPLAY_INFO REPORT COMPARE_PERIOD_REPORT

62 Database Replay: PL/SQL Example exec DBMS_WORKLOAD_CAPTURE.ADD_FILTER(fname => 'sessfilt',- fattribute => USER,- fvalue => 'JFV'); exec DBMS_WORKLOAD_CAPTURE.START_CAPTURE(name => 'june_peak',- dir => 'jun07'); Execute your workload exec DBMS_WORKLOAD_CAPTURE.FINISH_CAPTURE(); exec DBMS_WORKLOAD_REPLAY.PROCESS_CAPTURE(capture_dir => 'jun07'); exec DBMS_WORKLOAD_REPLAY.INITIALIZE_REPLAY(replay_name => 'j_r',- replay_dir => 'jun07'); exec DBMS_WORKLOAD_REPLAY.REMAP_CONNECTION(connection_id => 101,- replay_connection => 'edlin44:3434/bjava21');

63 Database Replay: PL/SQL Example exec DBMS_WORKLOAD_REPLAY.PREPARE_REPLAY(synchronization => TRUE,- think_time_scale=> 2); wrc userid=system password=oracle replaydir=/dbreplay exec DBMS_WORKLOAD_REPLAY.START_REPLAY (); DECLARE cap_id NUMBER; rep_id NUMBER; rep_rpt CLOB; BEGIN cap_id := DBMS_WORKLOAD_REPLAY.GET_REPLAY_INFO(dir => 'jun07'); /* Get the latest replay for that capture */ SELECT max(id) INTO rep_id FROM dba_workload_replays WHERE capture_id = cap_id; rep_rpt := DBMS_WORKLOAD_REPLAY.REPORT(replay_id => rep_id, format => DBMS_WORKLOAD_REPLAY.TYPE_TEXT); END;

64 Data Dictionary Views: Database Replay DBA_WORKLOAD_CAPTURES: Lists all the workload captures performed in the database DBA_WORKLOAD_FILTERS: Lists all the workload filters defined in the database DBA_WORKLOAD_REPLAYS: Lists all the workload replays that have been performed in the database DBA_WORKLOAD_REPLAY_DIVERGENCE: Is used to monitor workload divergence DBA_WORKLOAD_CONNECTION_MAP: Is used to review all connection strings that are used by the workload replays V$WORKLOAD_REPLAY_THREAD: Monitors the status of the external replay clients

65 Calibrating Replay Clients $ wrc system/oracle@oc11 mode=calibrate replaydir=/dbreplay Workload Replay Client: Release Production on Tue Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Report for Workload in: /dbreplay Recommendation: Consider using at least 1 clients divided among 1 CPU(s). Workload Characteristics: - max concurrency: 4 sessions - total number of sessions: 11 Assumptions: - 1 client process per 50 concurrent sessions - 4 client process per CPU - think time scale = connect time scale = synchronization = TRUE $

66 Database Replay: Summary Identify the benefits of using Database Replay List the steps involved in using Database Replay Use Enterprise Manager to record and replay workloads

67 Database Replay: Tutorial <Insert Picture Here>

68 Database Replay: Enterprise Manager

69 Workload Capture: Plan Environment

70 Workload Capture: Options

71 Workload Capture: Parameters

72 Workload Capture: Parameters

73 Workload Capture: Parameters

74 Workload Capture: Schedule

75 Workload Capture: Review

76 Workload Capture: View

77 Workload Capture

78 Workload Capture: Export AWR Data

79 Workload Preprocess

80 Workload Preprocess

81 Workload Preprocess: Database Version

82 Workload Preprocess: Schedule

83 Workload Preprocess: Review

84 Workload Preprocess: View Job

85 Workload Preprocess: View Job

86 Workload Replay

87 Workload Replay: Set Up Replay

88 Workload Replay: Set Up Replay

89 Workload Replay: Initialize Options

90 Workload Replay: Customize Options

91 Workload Replay: Replay Clients

92 Workload Replay: Review

93 Workload Replay: View

94 Workload Replay: View

95 Workload Replay: View

96 Workload Replay: View

97 Workload Replay Report

98 Workload Replay Report

99 Replay Compare Period Report

100 Replay Compare Period Report

101 Replay Compare Period Report

102 AWR Compare Period Report

103 AWR Compare Period Report

104 AWR Compare Period Report

105

106

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

Real Application Testing. Fred Louis Oracle Enterprise Architect

Real Application Testing. Fred Louis Oracle Enterprise Architect Real Application Testing Fred Louis Oracle Enterprise Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

How To Test For A Test On A Test Server

How To Test For A Test On A Test Server Real Application Testing Dave Foster Master Principal Sales Consultant The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com Why Standardize on Oracle Database 11g Next Generation Database Management Thomas Kyte http://asktom.oracle.com Top Challenges Performance Management Change Management Ongoing Administration Storage Backup

More information

SQL Performance Analyzer: Eliminating the Guesswork from SQL Performance Prabhaker Gongloor (GP) Khaled Yagoub Pete Belknap Database Manageability

SQL Performance Analyzer: Eliminating the Guesswork from SQL Performance Prabhaker Gongloor (GP) Khaled Yagoub Pete Belknap Database Manageability SQL Performance Analyzer: Eliminating the Guesswork from SQL Performance Prabhaker Gongloor (GP) Khaled Yagoub Pete Belknap Database Manageability Group Oracle Corporation Outline Motivation SQL Performance

More information

Evidence-based Best Practices for JD Edwards EnterpriseOne

Evidence-based Best Practices for JD Edwards EnterpriseOne Evidence-based Best Practices for JD Edwards EnterpriseOne Using Oracle 11gR2 Real Application Testing Dallas Willett & Jeremiah Wilton Technical Leads Blue Gecko, Inc. Evidence-based Best Practices for

More information

Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager

Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager Maximizing Performance for Oracle Database 12c using Oracle Enterprise Manager Björn Bolltoft Principal Product Manager Database manageability Table of Contents Database Performance Management... 3 A.

More information

Risk-Free Administration for Expert Database Administrators

Risk-Free Administration for Expert Database Administrators Risk-Free Administration for Expert Database Administrators Kurt Engeleiter, Oracle Jason Lentz, Cerner Bart Gaddis, Cerner Safe Harbor Statement The following is intended to outline our general product

More information

1. This lesson introduces the Performance Tuning course objectives and agenda

1. This lesson introduces the Performance Tuning course objectives and agenda Oracle Database 11g: Performance Tuning The course starts with an unknown database that requires tuning. The lessons will proceed through the steps a DBA will perform to acquire the information needed

More information

Oracle Database 11g: New Features for Administrators DBA Release 2

Oracle Database 11g: New Features for Administrators DBA Release 2 Oracle Database 11g: New Features for Administrators DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: New Features for Administrators DBA Release 2 training explores new change

More information

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6

More information

Oracle s SQL Performance Analyzer

Oracle s SQL Performance Analyzer Oracle s SQL Performance Analyzer Khaled Yagoub, Pete Belknap, Benoit Dageville, Karl Dias, Shantanu Joshi, and Hailing Yu Oracle USA {khaled.yagoub, pete.belknap, benoit.dageville, karl.dias, shantanu.joshi,

More information

Oracle Database 11g: Performance Tuning DBA Release 2

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

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Course ON10G 5 Day(s) 30:00 Hours Introduction This course introduces students to the new features in Oracle Database 10g Release 2 - the database for

More information

Oracle 11g New Features - OCP Upgrade Exam

Oracle 11g New Features - OCP Upgrade Exam Oracle 11g New Features - OCP Upgrade Exam This course gives you the opportunity to learn about and practice with the new change management features and other key enhancements in Oracle Database 11g Release

More information

An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices

An Oracle White Paper February, 2015. Oracle Database In-Memory Advisor Best Practices An Oracle White Paper February, 2015 Oracle Database In-Memory Advisor Best Practices Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

ORACLE DATABASE 11G: COMPLETE

ORACLE DATABASE 11G: COMPLETE ORACLE DATABASE 11G: COMPLETE 1. ORACLE DATABASE 11G: SQL FUNDAMENTALS I - SELF-STUDY COURSE a) Using SQL to Query Your Database Using SQL in Oracle Database 11g Retrieving, Restricting and Sorting Data

More information

Oracle Database 12c: Performance Management and Tuning NEW

Oracle Database 12c: Performance Management and Tuning NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

Oracle Database 12c: Performance Management and Tuning NEW

Oracle Database 12c: Performance Management and Tuning NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - New Features for Administrators Release 2. 5 Jours [35 Heures] Objectif Install Oracle Grid Infrastructure Install Oracle Database 11g Release 2 Use Oracle Restart to manage components Use Automatic Storage Management (ASM) enhancements Implement table compression

More information

Basic Tuning Tools Monitoring tools overview Enterprise Manager V$ Views, Statistics and Metrics Wait Events

Basic Tuning Tools Monitoring tools overview Enterprise Manager V$ Views, Statistics and Metrics Wait Events Introducción Objetivos Objetivos del Curso Basic Tuning Tools Monitoring tools overview Enterprise Manager V$ Views, Statistics and Metrics Wait Events Using Automatic Workload Repository Managing the

More information

Oracle Enterprise Manager 12c New Capabilities for the DBA. Charlie Garry, Director, Product Management Oracle Server Technologies

Oracle Enterprise Manager 12c New Capabilities for the DBA. Charlie Garry, Director, Product Management Oracle Server Technologies Oracle Enterprise Manager 12c New Capabilities for the DBA Charlie Garry, Director, Product Management Oracle Server Technologies of DBAs admit doing nothing to address performance issues CHANGE AVOID

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Performance Tuning DBA Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Performance Tuning DBA Release 2. 5 Jours [35 Heures] Plan de cours disponible à l adresse http://www.adhara.fr/.aspx Objectif Use the Oracle Database tuning methodology appropriate to the available tools Utilize database advisors to proactively tune an Oracle

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: + 38516306373 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release 2 training assists database

More information

Proactive Performance Monitoring Using Metric Extensions and SPA

Proactive Performance Monitoring Using Metric Extensions and SPA Proactive Performance Monitoring Using Metric Extensions and SPA Mughees A. Minhas Oracle Redwood Shores, CA, USA Keywords: Oracle, database, performance, proactive, fix, monitor, Enterprise manager, EM,

More information

Oracle Database 11g: New Features for Administrators

Oracle Database 11g: New Features for Administrators Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: New Features for Administrators Duração: 5 Dias Objetivos do Curso This course gives students the opportunity to learn about-and practice

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Working knowledge of SQL and use of PL/SQL

More information

Delivering Oracle Success. Automatic SQL Tuning in Oracle Database 10g and 11g. Lucy Feng. RMOUG Training Days February 15-17, 2011

Delivering Oracle Success. Automatic SQL Tuning in Oracle Database 10g and 11g. Lucy Feng. RMOUG Training Days February 15-17, 2011 Delivering Oracle Success Automatic SQL Tuning in Oracle Database 10g and 11g Lucy Feng RMOUG Training Days February 15-17, 2011 About DBAK Oracle solution provider Co-founded in 2005 Based in Englewood,

More information

DBA Best Practices: A Primer on Managing Oracle Databases. Leng Leng Tan Vice President, Systems and Applications Management

DBA Best Practices: A Primer on Managing Oracle Databases. Leng Leng Tan Vice President, Systems and Applications Management DBA Best Practices: A Primer on Managing Oracle Databases Leng Leng Tan Vice President, Systems and Applications Management The following is intended to outline our general product direction. It is intended

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 Step-by-Step Cookbook for Identifying and Tuning SQL Problems Ashish

More information

Oracle Database 12c: Administration Workshop NEW

Oracle Database 12c: Administration Workshop NEW Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Administration Workshop NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Advanced Database Performance Analysis Techniques Using Metric Extensions and SPA Mughees A. Minhas VP of Product Management Oracle 2 Program Agenda Database Performance Analysis Challenges Advanced

More information

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress*

Oracle Database 11 g Performance Tuning. Recipes. Sam R. Alapati Darl Kuhn Bill Padfield. Apress* Oracle Database 11 g Performance Tuning Recipes Sam R. Alapati Darl Kuhn Bill Padfield Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvi xvii xviii Chapter 1: Optimizing

More information

Customer evaluation guide Toad for Oracle v12 Database administration

Customer evaluation guide Toad for Oracle v12 Database administration Thank you for choosing to download a Toad for Oracle trial. This guide will enable you to evaluate Toad s key technical features and business value. It can be used to evaluate the database administration

More information

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy

MyOra 3.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 3.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...

More information

Oracle Database 12c: Admin, Install and Upgrade Accelerated

Oracle Database 12c: Admin, Install and Upgrade Accelerated Oracle University Contact Us: + 38516306373 Oracle Database 12c: Admin, Install and Upgrade Accelerated Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated

More information

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course will provide you with

More information

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Oracle vs. SQL Server Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Agenda Discussions on the various advantages and disadvantages of one platform vs. the other For each topic,

More information

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager. Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager. Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering About Author Kai Yu Senior System Engineer, Dell Oracle Solutions

More information

50238: Introduction to SQL Server 2008 Administration

50238: Introduction to SQL Server 2008 Administration 50238: Introduction to SQL Server 2008 Administration 5 days Course Description This five-day instructor-led course provides students with the knowledge and skills to administer SQL Server 2008. The course

More information

ORACLE DATABASE ADMINISTRATOR RESUME

ORACLE DATABASE ADMINISTRATOR RESUME 1 of 5 1/17/2015 1:28 PM ORACLE DATABASE ADMINISTRATOR RESUME ORACLE DBA Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide candidates on a Contract basis.

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop

Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop Programa de Actualización Profesional ACTI Oracle Database 11g: SQL Tuning Workshop What you will learn This Oracle Database 11g SQL Tuning Workshop training is a DBA-centric course that teaches you how

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager

Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Monitoring and Diagnosing Oracle RAC Performance with Oracle Enterprise Manager Kai Yu, Orlando Gallegos Dell Oracle Solutions Engineering Oracle OpenWorld 2010, Session S316263 3:00-4:00pm, Thursday 23-Sep-2010

More information

Oracle Data Masking. Bruce Elton. Master Principal Sales Consultant Information Security. 1 2012 Oracle Corporation

Oracle Data Masking. Bruce Elton. Master Principal Sales Consultant Information Security. 1 2012 Oracle Corporation Oracle Data Masking Bruce Elton Master Principal Sales Consultant Information Security 1 2012 Oracle Corporation Oracle Data Masking Comprehensive and Extensible Mask Library Mask formats for common sensitive

More information

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I COURCE TITLE DURATION DBA 11g Oracle Database 11g: Administration Workshop I 40 H. What you will learn: This course is designed to give students a firm foundation in basic administration of Oracle Database

More information

Oracle Database 10g. Page # The Self-Managing Database. Agenda. Benoit Dageville Oracle Corporation benoit.dageville@oracle.com

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

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: Administration Workshop I Duração: 5 Dias Objetivos do Curso This course is designed to give students a firm foundation in basic administration

More information

Oracle Database 11g: SQL Tuning Workshop Release 2

Oracle Database 11g: SQL Tuning Workshop Release 2 Oracle University Contact Us: 1 800 005 453 Oracle Database 11g: SQL Tuning Workshop Release 2 Duration: 3 Days What you will learn This course assists database developers, DBAs, and SQL developers to

More information

Mind Q Systems Private Limited

Mind Q Systems Private Limited MS SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques Module 1: SQL Server Architecture Introduction to SQL Server 2012 Overview on RDBMS and Beyond Relational Big picture of

More information

Oracle Enterprise Manager 13c Cloud Control

Oracle Enterprise Manager 13c Cloud Control Oracle Enterprise Manager 13c Cloud Control ORACLE DIAGNOSTICS PACK FOR ORACLE DATABASE lace holder for now] Oracle Enterprise Manager is Oracle s integrated enterprise IT management product line, and

More information

Data Integration and ETL with Oracle Warehouse Builder NEW

Data Integration and ETL with Oracle Warehouse Builder NEW Oracle University Appelez-nous: +33 (0) 1 57 60 20 81 Data Integration and ETL with Oracle Warehouse Builder NEW Durée: 5 Jours Description In this 5-day hands-on course, students explore the concepts,

More information

SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques

SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques Module: 1 Module: 2 Module: 3 Module: 4 Module: 5 Module: 6 Module: 7 Architecture &Internals of SQL Server Engine Installing,

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins by gaining a much deeper

More information

Oracle Database 12c: Administration Workshop NEW. Duration: 5 Days. What you will learn

Oracle Database 12c: Administration Workshop NEW. Duration: 5 Days. What you will learn Oracle Database 12c: Administration Workshop NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

More information

ORACLE CORE DBA ONLINE TRAINING

ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA THIS ORACLE DBA TRAINING COURSE IS DESIGNED TO PROVIDE ORACLE PROFESSIONALS WITH AN IN-DEPTH UNDERSTANDING OF THE DBA FEATURES OF ORACLE, SPECIFIC ORACLE

More information

OTM Performance OTM Users Conference 2015. Jim Mooney Vice President, Product Development August 11, 2015

OTM Performance OTM Users Conference 2015. Jim Mooney Vice President, Product Development August 11, 2015 OTM Performance OTM Users Conference 2015 Jim Mooney Vice President, Product Development August 11, 2015 1 Program Agenda 1 2 3 4 5 Scalability Refresher General Performance Tips Targeted Tips by Product

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle University Contact Us: +35929238111 Oracle Database 11g: Administration Workshop II DBA Release 2 Duration: 5 Days What you will learn This course takes the database administrator beyond the basic

More information

Data Integration and ETL with Oracle Warehouse Builder: Part 1

Data Integration and ETL with Oracle Warehouse Builder: Part 1 Oracle University Contact Us: + 38516306373 Data Integration and ETL with Oracle Warehouse Builder: Part 1 Duration: 3 Days What you will learn This Data Integration and ETL with Oracle Warehouse Builder:

More information

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features 1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended

More information

Keep It Simple - Common, Overlooked Performance Tuning Tips. Paul Jackson Hotsos

Keep It Simple - Common, Overlooked Performance Tuning Tips. Paul Jackson Hotsos Keep It Simple - Common, Overlooked Performance Tuning Tips Paul Jackson Hotsos Who Am I? Senior Consultant at Hotsos Oracle Ace Co-Author of Oracle Applications DBA Field Guide Co-Author of Oracle R12

More information

AV-004: Administering and Programming with ORACLE

AV-004: Administering and Programming with ORACLE AV-004: Administering and Programming with ORACLE Oracle 11g Duration: 140 hours Introduction: An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Oracle Database 11g: Administration Workshop II Release 2

Oracle Database 11g: Administration Workshop II Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop II Release

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2

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

Eloquence Training What s new in Eloquence B.08.00

Eloquence Training What s new in Eloquence B.08.00 Eloquence Training What s new in Eloquence B.08.00 2010 Marxmeier Software AG Rev:100727 Overview Released December 2008 Supported until November 2013 Supports 32-bit and 64-bit platforms HP-UX Itanium

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP I

ORACLE DATABASE: ADMINISTRATION WORKSHOP I ORACLE DATABASE: ADMINISTRATION WORKSHOP I CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with Oracle Workforce Development Program Format:

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

Collecting Oracle AWR Reports for Database Infrastructure Evaluator Tool (DIET) by Hitachi Data Systems

Collecting Oracle AWR Reports for Database Infrastructure Evaluator Tool (DIET) by Hitachi Data Systems 1 Collecting Oracle AWR Reports for Database Infrastructure Evaluator Tool (DIET) by Hitachi Data Systems User Guide June 2015 Month Year Feedback Hitachi Data Systems welcomes your feedback. Please share

More information

<Insert Picture Here> Upgrading to 11g Database Best Practices and Less Known Features

<Insert Picture Here> Upgrading to 11g Database Best Practices and Less Known Features Upgrading to 11g Database Best Practices and Less Known Features Morana Kobal Butković Senior Sales Consultant Oracle Hrvatska Agenda Preparation Best Practices Performance Testing

More information

VMware vcenter Server 5.5 Deployment Guide TECHNICAL MARKETING DOCUMENTATION V 1.0/NOVEMBER 2013/JUSTIN KING

VMware vcenter Server 5.5 Deployment Guide TECHNICAL MARKETING DOCUMENTATION V 1.0/NOVEMBER 2013/JUSTIN KING VMware 5.5 TECHNICAL MARKETING DOCUMENTATION V 1.0/NOVEMBER 2013/JUSTIN KING Table of Contents Overview.... 3 Components of 5.5.... 3 vcenter Single Sign-On.... 3 vsphere Web Client.... 3 vcenter Inventory

More information

Management Packs for Database

Management Packs for Database Management Packs for Database Diagnostics Pack for Database Oracle Diagnostics Pack for Database offers a complete, cost-effective, and easy to use solution for managing the performance of Oracle Database

More information

<Insert Picture Here> Designing and Developing Highly Scalable Applications with the Oracle Database

<Insert Picture Here> Designing and Developing Highly Scalable Applications with the Oracle Database Designing and Developing Highly Scalable Applications with the Oracle Database Mark Townsend VP, Database Product Management Server Technologies, Oracle Background Information from

More information

MS SQL Server 2014 New Features and Database Administration

MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 Architecture Database Files and Transaction Log SQL Native Client System Databases Schemas Synonyms Dynamic Management Objects

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop I Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop I Release 2. 5 Jours [35 Heures] Plan de cours disponible à l adresse http://www.adhara.fr/.aspx Objectif Monitor performance Describe Oracle Database Architecture Install Oracle Grid Infrastructure Install and configure Oracle Database

More information

VMware vcenter Update Manager Administration Guide

VMware vcenter Update Manager Administration Guide VMware vcenter Update Manager Administration Guide Update 1 vcenter Update Manager 4.0 This document supports the version of each product listed and supports all subsequent versions until the document

More information

An Oracle White Paper November 2010. SQL Plan Management in Oracle Database 11g

An Oracle White Paper November 2010. SQL Plan Management in Oracle Database 11g An Oracle White Paper November 2010 SQL Plan Management in Oracle Database 11g Introduction... 1 SQL Plan Management... 2 SQL plan baseline capture... 2 SQL Plan Baseline Selection... 10 Using and managing

More information

Development Best Practices

Development Best Practices Development Best Practices 0 Toad Toad for Oracle v.9.6 Configurations for Oracle Standard Basic Toad Features + Team Coding + PL/SQL Profiler + PL/SQL Debugging + Knowledge Xpert PL/SQL and DBA Toad for

More information

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines An Oracle White Paper August 2010 Oracle Database Auditing: Performance Guidelines Introduction Database auditing has become increasingly important as threats to applications become more sophisticated.

More information

Quest SQL Optimizer. for Oracle 8.0. User Guide

Quest SQL Optimizer. for Oracle 8.0. User Guide Quest SQL Optimizer for Oracle 8.0 User Guide 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is

More information

MyOra 4.5. User Guide. SQL Tool for Oracle. Kris Murthy

MyOra 4.5. User Guide. SQL Tool for Oracle. Kris Murthy MyOra 4.5 SQL Tool for Oracle User Guide Kris Murthy Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL Editor...

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn View a newer version of this course /a/b/p/p/b/pulli/lili/lili/lili/lili/lili/lili/lili/lili/lili/lili/lili/li/ul/b/p/p/b/p/a/a/p/

More information

Change Manager 5.0 Installation Guide

Change Manager 5.0 Installation Guide Change Manager 5.0 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Technical Comparison of Oracle Database 11g and SQL Server 2008: Focus on Manageability. An Oracle White Paper December 2008

Technical Comparison of Oracle Database 11g and SQL Server 2008: Focus on Manageability. An Oracle White Paper December 2008 Technical Comparison of Oracle Database 11g and SQL Server 2008: Focus on Manageability An Oracle White Paper December 2008 Technical Comparison of Oracle Database 11g and SQL Server 2008: Focus on Manageability

More information

Oracle Database 11g: Security Release 2. Course Topics. Introduction to Database Security. Choosing Security Solutions

Oracle Database 11g: Security Release 2. Course Topics. Introduction to Database Security. Choosing Security Solutions Oracle Database 11g: Security Release 2 In this course, students learn how they can use Oracle Database features to meet the security, privacy and compliance requirements of their organization. The current

More information

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization Introducción Objetivos Objetivos del Curso Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting to the Database and the ASM Instance

More information

Oracle Education @ USF

Oracle Education @ USF Oracle Education @ USF Oracle Education @ USF helps increase your employability and also trains and prepares you for the competitive job market at a much lower cost compared to Oracle University. Oracle

More information

Migrate, Manage, Monitor SQL Server 2005: How Idera s Tools for SQL Server Can Help

Migrate, Manage, Monitor SQL Server 2005: How Idera s Tools for SQL Server Can Help Migrate, Manage, Monitor SQL Server 2005: How Idera s Tools for SQL Server Can Help White Paper January 2007 Abstract If you haven't already made the move to SQL Server 2005, most likely it is on your

More information

MS-40074: Microsoft SQL Server 2014 for Oracle DBAs

MS-40074: Microsoft SQL Server 2014 for Oracle DBAs MS-40074: Microsoft SQL Server 2014 for Oracle DBAs Description This four-day instructor-led course provides students with the knowledge and skills to capitalize on their skills and experience as an Oracle

More information

VMware vcenter Update Manager Administration Guide

VMware vcenter Update Manager Administration Guide VMware vcenter Update Manager Administration Guide vcenter Update Manager 4.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Managing Database Performance. Copyright 2009, Oracle. All rights reserved.

Managing Database Performance. Copyright 2009, Oracle. All rights reserved. Managing Database Performance Objectives After completing this lesson, you should be able to: Monitor the performance of sessions and services Describe the benefits of Database Replay Oracle Database 11g:

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: +33 15 7602 081 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn This course is available in Training On Demand format This Oracle Database: Program

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: +52 1 55 8525 3225 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Program with PL/SQL

More information

Top 10 Oracle SQL Developer Tips and Tricks

Top 10 Oracle SQL Developer Tips and Tricks Top 10 Oracle SQL Developer Tips and Tricks December 17, 2013 Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle America Inc., New York, NY The following is intended to outline

More information

The Power of 11g Automatic SQL Tuning Julian Dontcheff, Nokia, OCM

The Power of 11g Automatic SQL Tuning Julian Dontcheff, Nokia, OCM The Power of 11g Automatic SQL Tuning Julian Dontcheff, Nokia, OCM What is Automatic SQL Tuning? Oracle automatically runs the SQL Tuning Advisor on selected high-load SQL statements from the Automatic

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server CA RECOVERY MANAGEMENT R12.5 BEST PRACTICE CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases.

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. SQL Databases Course by Applied Technology Research Center. 23 September 2015 This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. Oracle Topics This Oracle Database: SQL

More information