<Insert Picture Here> Migrating to Oracle 11.2 for LoZ Performance upgrade

Size: px
Start display at page:

Download "<Insert Picture Here> Migrating to Oracle 11.2 for LoZ Performance upgrade"

Transcription

1 1

2 <Insert Picture Here> Migrating to Oracle 11.2 for LoZ Performance upgrade Thomas Niewel Principal Sales Consultant Oracle Deutschland BV & CO KG

3 Agenda Oracle for Linux on System z Overview Oracle 11g Some interesting features Testing applications accessing Oracle

4 Oracle for 11.2 Linux on System z Previous version of the Oracle database on that platform was Current version is

5 System z configuration examples VM Guest 1 VM Guest 2 VM Guest 3 VM Guest n Virtual machines VM-Guests Linux for z VM 1 VM 60 VM n z/vm Operating System Logical partitions LPAR 1 LPAR LPAR s Basic Mode Hardware 5

6 Hipersockets Example in a z/os client environment LPAR 1 Oracle for Linux on z LPAR 2 z/os Application running under z/os Oracle Hipersockets 6

7 Agenda Oracle for Linux on System z Overview Oracle 11g Some interesting features Testing applications accessing Oracle

8 Some interesting Oracle 11g features Result Cache Faster results with help of Result Cache SQL Plan Management Minimize the risks of execution plan changes SQL Performance Analyzer Helps to compare the effects of changes Compression Saves disk space and improves performance Automatic SQL Tuning Automated tuning of SQL statements 8

9 Result Cache Concept: Dedicated cache in shared pool No installation necessary Automatic refresh if data changes Easy setup and monitoring Useful for SQL-queries PL/SQL-functions Use cases: Known queries and applications like DWH applications, reporting, etc. 9

10 Easy to use Enabled by init parameter RESULT_CACHE_MODE If RESULT_CACHE_MODE=MANUAL => Hint has to be used SELECT /*+ result_cache */ count(*) FROM sales If set to RESULT_CACHE_MODE=FORCE => Hint is automatically added to root select SELECT count(*) FROM sales... 10

11 Result Cache Settings RESULT_CACHE_MAX_RESULT 5 (%) RESULT_CACHE_MAX_SIZE depending on OS RESULT_CACHE_MODE MANUAL/FORCE RESULT_CACHE_REMOTE_EXPIRATION 0 (min) RESULT_CACHE_MAX_SIZE: specifies the maximum amount of SGA memory (in bytes) that can be used by the Result Cache RESULT_CACHE_MAX_RESULT: specifies the percentage of RESULT_CACHE_MAX_SIZE that any single result can use RESULT_CACHE_REMOTE_EXPIRATION: specifies the number of minutes that a result using a remote object is allowed to remain valid 11

12 Monitoring SQL> SELECT /*+ result_cache */ COUNT(*), SUM(salary) FROM hr.bigemp group by department_id ORDER BY department_id; Id Operation Name Rows Bytes Cost (%CPU) Time SELECT STATEMENT (2) 00:00:34 1 RESULT CACHE 91myw5c1bud0mcn64g3d0ykdhm 2 SORT GROUP BY (2) 00:00:34 3 TABLE ACCESS FULL BIGEMP 876K 4280K 2201 (1) 00:00:34 Statistics recursive calls 0 db block gets 0 consistent gets 0 physical reads 0 redo size 696 bytes sent via SQL*Net to client 419 bytes received via SQL*Net from client 2 SQL*Net roundtrips to/from client 0 sorts (memory) 0 sorts (disk) 12 rows processed 12

13 Monitoring SQL> SELECT name, type, row_count, status, invalidations, scan_count 2 FROM v$result_cache_objects; NAME TYPE ROW_COUNT INVALIDATIONS SCAN_COUNT HR.GET_DATUM Dependency SCOTT.EMP Dependency HR.BIGEMP Dependency SELECT /*+ result_ca Result che */ COUNT(*), SUM(salary) FROM hr.bigemp group by department_id OR DER BY department 13

14 Some interesting Oracle 11g features Result Cache Faster results with help of Result Cache SQL Plan Management Minimize the risks of execution plan changes SQL Performance Analyzer Helps to compare the effects of changes Compression Saves disk space and improves performance Automatic SQL Tuning Automated tuning of SQL statements 14

15 SQL Plan Management Is useful in case of Software upgrades Application changes If SQL execution plans should be controlled / frozen 15

16 SQL plan management Solution before 11g: Use of Hints? Manipulation of statistics? Use of stored outlines? 11g Structured SQL plan development Concept Statement Logging SQL Plan SQL Plan Baselines 16

17 SQL Plan Management Prerequisite: Plan management ist activated After the 1st Parse => Entry in statement log After the 2nd Parse => Entry in plan history and mark as SQL plan baseline If changes occur: Re-parsing of the statement Execution plan has changed => Plan baseline is used and the new execution plan is marked for verifcation 17

18 Administration Capture of SQL Plan baselines: OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=TRUE/FALS E Export or import Use of SQL tuning set or cursor cache Use of existing SQL Plan baselines: OPTIMIZER_USE_SQL_PLAN_BASELINES=TRUE/FALSE Evolve of existing baselines Enterprise Manager Package 18

19 Monitoring: SQL Plan Management execution plan Execution Plan Plan hash value: Id Operation Name Rows Bytes Cost (%CPU) Time SELECT STATEMENT (1) 00:01:13 1 SORT AGGREGATE 1 7 * 2 TABLE ACCESS FULL DOC (1) 00:01: Predicate Information (identified by operation id): filter("ort" LIKE 'Frankfurt%') Note SQL plan baseline "SYS_SQL_PLAN_bb53c5913fe9c83b" used for this statement 19

20 Monitoring: SQL Plan Management EM: Server => SQL Plan Control 20

21 Upgrade-Scenario Target: 11g execution plans should only be used after verification Idea: Use of OPTIMIZER_FEATURES_ENABLE optimizer_features_enable= Plan History Start of SQL Workload and capture of SQL Plan baselines GB Plan GB HJ Baseline GB HJ HJ HJ HJ 11g execution plans waiting for verification NL Only verified execution plans optimizer_features_enable= Oracle Database 11g 21

22 Some interesting Oracle 11g features Result Cache Faster results with help of Result Cache SQL Plan Management Minimize the risks of execution plan changes SQL Performance Analyzer Helps to compare the effects of changes Compression Saves disk space and improves performance Automatic SQL Tuning Automated tuning of SQL statements 22

23 SQL Performance Analyzer Is useful when A dedicated SQL-workload has to be analyzed after changes Risks have to be evaluated after changes A detailed performance analysis of a single SQL statement is necessary Performance evaluations of SQL workloads before Oracle 11g 23

24 SQL Performance Analyzer Benefits: No additional installation necessary No Scripting necessary Enterprise Manager Useful for Performance analysis of a dedicated workload Prerequisites: SQL Tuning Sets 24

25 SQL Performance Analyzer Workflow Productiondatabase Test Datenbank SQL Tuning Set Execution Cursor Cache ftp Export/Import Execution Plan & statistics Inkrementelles Capture Before Change Test After Change Test SQL Tuning Set Performance Comparison 25

26 Generate SQL Tuning Set 26

27 Enterprise Manager Report 27

28 Enterprise Manager reports - details 28

29 SQL Performance Analyzer (SPA) and Replay SPA DB Replay Focus Evaluation a set of SQL Statements Replay of the whole workload including concurrency Repeatable Yes Yes (with Backup) Installation 11g: - <11g: Patch 11g: - (wrc available) <11g: Patch Use before Version 11g (*) (*) (*) Prerequisites STS - Results Analysis of execution plans / execution statistics Capture and Replay Report, AWR und ASH diff report (*) See Note

30 Some interesting Oracle 11g features Result Cache Faster results with help of Result Cache SQL Plan Management Minimize the risks of execution plan changes SQL Performance Analyzer Helps to compare the effects of changes Compression Saves disk space and improves performance Automatic SQL Tuning Automated tuning of SQL statements 30

31 Selected Oracle 11g features - Compression Can be used To reduce cost and resources To save disk space of structured and unstructured data To utilize the Buffer cache more efficient To reduce duplicates in relational and unstructured data 31

32 Selected Oracle 11g features - Compression Compression is available for Indexes Structured table data (and partitions) with DIRECT Load And with Advanced Compression also for Unstructured data types (SecureFiles) Conventional DML(OLTP-compression) Datapump and RMAN data Redo Traffic with Data Guard 32

33 Selected Oracle 11g features - Compression Employee Table Nicht komprimierter Block ID FIRST_NAME LAST_NAME Header 1 2 John Jane Doe Doe 1 John Doe 2 Jane Doe 3 John Smith 4 Jane Doe 3 John Smith Free Space 4 Jane Doe INSERT INTO employee VALUES (5,'Jack','Smith'); COMMIT; 33

34 Selected Oracle 11g features - Compression Uncompressed block Header 1 John Doe 2 Jane Doe 3 John Smith 4 Jane Doe 5 Jack Smith Free Space Compressed block Header John= Doe= Jane= Smith= 1 John Doe Jane 3 4 Doe 3 John Smith 5 Jack 4 Jane Doe Free Space Local block information More data per block 34

35 Selected Oracle 11g features - Compression Activation CREATE TABLE ALTER TABLE MOVE COMPRESS for existing tables ALTER TABLE MOVE PARTITION COMPRESS for partitions Example - syntax: CREATE TABLE sales_history( ) COMPRESS FOR ALL OPERATIONS DIRECT_LOAD OPERATIONS Enterprise Manager: 35

36 Oracle SecureFiles New LOB s Advantages Enhanced performance Simplified LOB management Additional functionality Note: Compression Deduplication Encryption (AES128, AES192 etc) The programming API s remain unchanged Prerequisite: ASSM Tablespace ONLINE Migration via DBMS_REDEFINITION CREATE TABLE media_secure (id NUMBER,... lob1 BLOB) LOB (lob1) STORE AS SECUREFILE (TABLESPACE COMP DEDUPLICATE COMPRESS HIGH DISABLE STORAGE IN ROW) 36

37 Enterprise Manager 37

38 Table compression Compression Advisor (DBMS_COMPRESSION) declare block_comp PLS_INTEGER; block_uncomp PLS_INTEGER; row_comp PLS_INTEGER; row_uncomp PLS_INTEGER; comp_ratio NUMBER; comp_str VARCHAR2(200); begin DBMS_COMPRESSION.GET_COMPRESSION_RATIO ( SCRATCHTBSNAME =>'USERS', OWNNAME =>'TNIEWEL', TABNAME =>'EMPLOYEE', PARTNAME =>'', COMPTYPE =>DBMS_COMPRESSION.COMP_FOR_OLTP, BLKCNT_CMP =>block_comp, BLKCNT_UNCMP =>block_uncomp, ROW_CMP =>row_comp, ROW_UNCMP =>row_uncomp, CMP_RATIO =>comp_ratio, COMPTYPE_STR =>comp_str); 38

39 Table compression Compression Advisor (DBMS_COMPRESSION) continued dbms_output.put_line('# Blocks compressed => ' block_comp); dbms_output.put_line('# Blocks uncompressed => ' block_uncomp); dbms_output.put_line('ratio => ' comp_ratio); dbms_output.put_line('compression-typ => ' comp_str); end; # Blocks compressed => 15 # Blocks uncompressed => 83 Ratio => 5.5 Compression-Typ => "Compress For OLTP 39

40 Compression overview Index Table Lob Segment compression Data pump RMAN Data Guard Algorithm Bitmap and compressed index For all operations with SecureFile With parameter COMPRESSION=ALL CONFIGURE COMPRESSION ALGORITHM='...' LOG_ARCHIVE_DEST_3= '...COMPRESSION=ENABLE' Depending on object type 40

41 Some interesting Oracle 11g features Result Cache Faster results with help of Result Cache SQL Plan Management Minimize the risks of execution plan changes SQL Performance Analyzer Helps to compare the effects of changes Compression Saves disk space and improves performance Automatic SQL Tuning Automated tuning of SQL statements 41

42 Automatic SQL Tuning Allows the automatic tuning of SQL statements Test and implementation of profiles can be automated The tuning process can be fully automated 42

43 Manage Performance SQL Tuning AWR Workload implementation ADDM DBA SQL tuning camdidates DBA Evaluation of recommendations start advisor DBA SQL Tuning Advisor Recommendations 43

44 Manage Performance SQL Tuning Rewrite SQL Manual observation AWR Workload Indexes DBA Stale statistics ADDM Select candidates Implement profiles Automatic during maintenance window Automatic selection of candidates Automatic Test and implementation(optional) of SQL profiles SQL Tuning Kandidaten SQL tuning candidates Automatic Test profiles SQL Tuning Advisor Recommendations 44

45 Automated SQL Tuning 45

46 Agenda Oracle for Linux on System z Overview Oracle 11g Some interesting features Testing applications accessing Oracle

47 Oracle Real Application Testing 47

48 Enterprise Manager 48

49 Oracle Real Application Testing Capture Flow Create directory Set filter for capture (optional) Start the capture Stop capture Check and monitor capture (optional) Export AWR (optional) 49

50 Oracle Real Application Testing PL/SQL Create directory create or replace directory RAT as '/home/oracle/rat'; Set filter for capture SQL> execute dbms_workload_capture.add_filter (fname=>'filtersh', fattribute=>'user',fvalue=>'&schema'); Enter value for schema: TNIEWEL_RAT PL/SQL procedure successfully completed. 50

51 Oracle Real Application Testing PL/SQL Start capture SQL> execute dbms_workload_capture.start_capture (name=>'&name', dir=>'&dir',default_action=>'exclude'); Enter value for name: CAP1 Enter value for dir: RAT1 PL/SQL procedure successfully completed. Execute workload 51

52 Oracle Real Application Testing PL/SQL Stop capture SQL> execute dbms_workload_capture.finish_capture(); PL/SQL procedure successfully completed. 52

53 Oracle Real Application Testing PL/SQL Monitor Capture SQL> col name format a25 SQL> col status format a15 SQL> select id, name, status, errors, awr_exported, duration_secs from dba_workload_captures; ID NAME STATUS ERRORS AWR_EXPORTED DURATION_SECS tn1 COMPLETED 2 YES CAP1 COMPLETED 0 NO

54 Oracle Real Application Testing PL/SQL Export AWR SQL> execute dbms_workload_capture.export_awr('&id'); Enter value for id: 2 PL/SQL procedure successfully completed. 54

55 Oracle Real Application Testing - Replay flow Migrate data to 11.2 database on LoZ Activate flashback Create directory which contains the captured data Preprocess captured data Save current SCN 55

56 Oracle Real Application Testing - Replay flow Add filter (optional) Initialize replay Use filter (optional) Calibrate wrc client Start wrc clients Start replay Monitor replay run Import AWR data of capture 56

57 Oracle Real Application Testing - Replay flow Run reports Replay compare report AWR diff report Successive runs Flashback database to saved SCN startup mount FLASHBACK DATABASE to scn; alter database open resetlogs; 57

58 Oracle Real Application Testing - Replay flow Migrate database to 11.2 Activate flashback Create directory which contains the captured data Preprocess Captured data SQL> begin dbms_workload_replay.process_capture(capture_dir => '&dir'); end; Save current SCN for a rerun of the test 58

59 Oracle Real Application Testing PL/SQL Add filter (optional) SQL> begin 2 DBMS_WORKLOAD_REPLAY.ADD_FILTER( 3 fname => FILT1', 4 fattribute => 'USER', 5 fvalue => TNIEWEL_RAT'); 6 end; 7 / SQL> BEGIN 2 DBMS_WORKLOAD_REPLAY.CREATE_FILTER_SET( 3 replay_dir=> RAT', 4 filter_set => FSET1', 5 default_action => 'EXCLUDE'); 6 END; 7 / 59

60 Oracle Real Application Testing PL/SQL Initialize replay SQL> execute dbms_workload_replay.initialize_replay( REPLAY_10', RAT'); Use filterset (optional) SQL> BEGIN 2 3 DBMS_WORKLOAD_REPLAY.USE_FILTER_SET ( 4 filter_set => '&FILTERSET_NAME'); 5 6 END; 60

61 Oracle Real Application Testing PL/SQL Prepare replay SQL> begin dbms_workload_replay.prepare_replay(synchronization => FALSE, connect_time_scale => '&CONNECT_TIME', think_time_scale => '&THINK_TIME'); Calibrate wrc client wrc userid=tniewel_rat password=tniewel_rat MODE=CALIBRATE replaydir=./ 61

62 Oracle Real Application Testing wrc clients Report for Workload in:./ Recommendation: Consider using at least 1 clients divided among 1 CPU(s) You will need at least 7 MB of memory per client process. If your machine(s) cannot match that number, consider using more clients. Workload Characteristics: - max concurrency: 2 sessions - total number of sessions: 2 - Assumptions: - 1 client process per 50 concurrent sessions - 4 client process per CPU KB of memory cache per concurrent session - think time scale = connect time scale = synchronization = TRUE 62

63 Oracle Real Application Testing wrc clients Start wrc clients wrc userid=tniewel_rat password=tniewel_rat MODE=REPLAY replaydir=./ workload Replay Client: Release Production on Fri Jan 28 09:08: Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Wait for the replay to start (09:08:36) Start replay SQL> EXEC dbms_workload_replay.start_replay(); Display on wrc screen Replay started (09:10:56) Replay finished (09:33:19) 63

64 Oracle Real Application Testing Monitoring replay SQL> select name, id, status, awr_exported,start_time, end_time from dba_workload_replays order by start_time; NAME ID STATUS AWR_EXPORTED START_TIM END_TIME play1 1 COMPLETED YES 26-JAN JAN-11 REP8 2 COMPLETED NO 27-JAN JAN-11 replay_10 5 IN PROGRESS NOT POSSIBLE 28-JAN-11 64

65 Oracle Real Application Testing Import AWR data of capture SQL> select name, id, status, awr_exported,start_time, end_time 2 from dba_workload_captures order by start_time 3 ; tn1 1 COMPLETED YES CAP1 5 COMPLETED YES CAP2 6 COMPLETED YES CAP3 7 COMPLETED YES CAP5 8 COMPLETED YES CAP7 10 COMPLETED YES CAP8 12 COMPLETED YES CAPTURE_10 15 COMPLETED YES rows selected. SQL> SQL> declare 2 t number; 3 begin 4 t:= DBMS_WORKLOAD_capture.IMPORT_AWR(&nr,'&schema', TRUE); 5 end; 6 / 65

66 Oracle Real Application Testing - reports Replay report set long set heading off set linesize 255 select dbms_workload_replay.report(replay_id=>'&repid', format=>'&format') from dual; Replay Compare period report set long set pagesize 0 set heading off variable results clob exec dbms_workload_replay.compare_period_report(replay_id1 =>'&id_1',replay_id2=>'&id2',format => '&Format',result=>:ergebnis); print results 66

67 Oracle Real Application Testing- Replay reports 67

68 Oracle Real Application Testing - Replay reports 68

69 Oracle Real Application Testing - Replay reports 69

70 More information

71 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. 71

72 72

73 We encourage you to use the newly minted corporate tagline Hardware and Software, Engineered to Work Together. at the end of all your presentations. This message should replace any reference to our previous corporate tagline Software. Hardware. Complete. 73

Real Application Testing Never Get Caught By Change Again. Michael R. Messina, Management Consultant Rolta-TUSC, NYOUG 2011 (60 min)

Real Application Testing Never Get Caught By Change Again. Michael R. Messina, Management Consultant Rolta-TUSC, NYOUG 2011 (60 min) Real Application Testing Never Get Caught By Change Again Michael R. Messina, Management Consultant Rolta-TUSC, NYOUG 2011 (60 min) Copyright 2009 Rolta International, Inc., All Rights Reserved Introduction

More information

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager Oracle Advanced : Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager The following is intended to outline our general product direction. It is intended for information

More information

What is Real Application Testing?

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

More information

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

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

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Moving Databases to Oracle Cloud: Performance Best Practices

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

More information

<Insert Picture Here> 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

Oracle Database 12c Performance Management and Tuning

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

More information

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

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

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

... Surya Rao Service Line Architect, IBM Senior Certified IT Specialist IBM GTS, Service Delivery, Data Management July 15, 2012

... Surya Rao Service Line Architect, IBM Senior Certified IT Specialist IBM GTS, Service Delivery, Data Management July 15, 2012 Database Replay........ Surya Rao Service Line Architect, IBM Senior Certified IT Specialist IBM GTS, Service Delivery, Data Management July 15, 2012 In Collaboration with the IBM Oracle International

More information

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

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

More information

ORACLE 11g Database Replay

ORACLE 11g Database Replay ORACLE 11g Database Replay October 2 nd, 2007 Inderpal S. Johal Principal Consultant Agenda Why DB Replay DB Replay Overview System Architecture Supported Workloads Capture the Workload Pre-Processing

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 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Oracle Database 11g: New Features for Administrators Release 2

Oracle Database 11g: New Features for Administrators Release 2 Oracle University Contact Us: 0845 777 7711 Oracle Database 11g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course gives you the opportunity to learn about and

More information

Oracle Advanced Compression Proof-of-Concept (POC) Insights and Best Practices

Oracle Advanced Compression Proof-of-Concept (POC) Insights and Best Practices O R A C L E A D V A N C E D C O M P R E S S I O N B E S T P R A C T I C E S Oracle Advanced Compression Proof-of-Concept (POC) Insights and Best Practices Oracle Advanced Compression FEATURES TYPICALLY

More information

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

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

More information

Oracle Database 11g R1 & R2: New Features for Administrators

Oracle Database 11g R1 & R2: New Features for Administrators General Description Target Audience Prerequisites This Oracle 11g courseware training guide book will assist experienced Oracle database administrators to quickly learn the new features and concepts associated

More information

11g Tech Briefing: Performance. Part 1 of 2

11g Tech Briefing: Performance. Part 1 of 2 11g Tech Briefing: Performance Part 1 of 2 Presenter JEREMY SCHNEIDER jeremy.schneider@ardentperf.com Senior Consultant, ITC Technology Services OCP, RAC since 2002, Systems Admin and Developer in previous

More information

Oracle Database 12c Release 2

Oracle Database 12c Release 2 Oracle Database 12c Release 2 New Features (OVERVIEW) Rhoda Sarmiento-Pereira Oracle Support Safe Harbor Statement The following is intended to outline our general product direction. It is intended for

More information

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ:

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ: Oracle 1z0-146 1z0-146 Oracle Database 11g: Advanced PL/SQL Practice Test Version 1.1 QUESTION NO: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

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

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

More information

Oracle Database 11g: Performance Tuning DBA Release 2

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

More information

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

Configuration changes such as conversion from a single instance to RAC, ASM, etc.

Configuration changes such as conversion from a single instance to RAC, ASM, etc. Today, enterprises have to make sizeable investments in hardware and software to roll out infrastructure changes. For example, a data center may have an initiative to move databases to a low cost computing

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-146 Title : Oracle database 11g:advanced pl/sql Version : Demo 1 / 9 1.The database instance was

More information

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

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

More information

Oracle Database 11g: Performance Tuning DBA Release 2

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

More information

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours What you will learn This course advances your success as an Oracle professional in the area of database administration.

More information

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

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

More information

Oracle Database 11g : Performance Tuning DBA Release2

Oracle Database 11g : Performance Tuning DBA Release2 Oracle Database 11g : Performance Tuning DBA Release2 Target Audience : Technical Consultant/L2/L3 Support DBA/Developers Course Duration : 5 days Day 1: Basic Tuning Tools Monitoring tools overview Enterprise

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

ORACLE 11g R2 New Features

ORACLE 11g R2 New Features KNOWLEDGE POWER Oracle Grid Infrastructure Installation and Upgrade Enhancements Oracle Restart ASM Enhancements Storage Enhancements Data Warehouse and Partitioning Enhancements Oracle SecureFiles Security

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

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

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c

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

Oracle Performance Tuning. Overview of performance tuning strategies

Oracle Performance Tuning. Overview of performance tuning strategies Oracle Performance Tuning Overview of performance tuning strategies Allan Young June 2008 What is tuning? Group of activities used to optimize and homogenize the performance of a database Maximize use

More information

Oracle. Exam Questions 1Z Oracle 11g: Advanced PL/SQL. Version:Demo. 1Z0-146 Exam Questions Demo https://www.passcertsure.

Oracle. Exam Questions 1Z Oracle 11g: Advanced PL/SQL. Version:Demo. 1Z0-146 Exam Questions Demo https://www.passcertsure. Oracle Exam Questions 1Z0-146 Oracle 11g: Advanced PL/SQL Version:Demo 1. Identify two strategies against SQL injection. (Choose two.) A. Using parameterized queries with bind arguments. B. Use subprograms

More information

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Course Topics: Introduction Overview Oracle Database Innovation Enterprise Cloud

More information

Oracle Database 12c: Performance Management and Tuning

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

More information

Real Application Testing Certified for SAP

Real Application Testing Certified for SAP Real Application Testing Certified for SAP Making a change to the SAP database can represent a significant risk to an organisation. The effects of an unexpected problem could be widely felt and have serious

More information

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Information Retention and Oracle Database Kevin Jernigan Senior Director Oracle Database Performance Product Management The following is intended to outline our general product direction. It is intended

More information

Oracle 11g New Features

Oracle 11g New Features Oracle 11g New Features Richard Lin Principal Sales Consultant Oracle Taiwan Agenda Adaptive Self-Managing Change Assurance Scallability Availability Best Information Introducing

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

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

Oracle Database 11g Release 2 for SAP Advanced Compression. Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany)

Oracle Database 11g Release 2 for SAP Advanced Compression. Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany) Oracle Database 11g Release 2 for SAP Advanced Compression Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany) Implicit Compression Efficient Use

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

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

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

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Certification: Oracle Database 12c Administrator Certified Associate Exam: Oracle Database 12c: Installation and Administration

More information

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version : Oracle 1Z0-043 Oracle Database 10g: Administration II Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-043 QUESTION: 172 You lost the index tablespace in your database. You decided

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

PERFORMANCE TUNING TRAINING IN BANGALORE

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

More information

Oracle Database. Real Application Testing User s Guide 10g Release 2 (10.2) E

Oracle Database. Real Application Testing User s Guide 10g Release 2 (10.2) E Oracle Database Real Application Testing User s Guide 10g Release 2 (10.2) E12024-01 January 2008 Oracle Database Real Application Testing User s Guide, 10g Release 2 (10.2) E12024-01 Copyright 2008, Oracle.

More information

Oracle Database 10g The Self-Managing Database

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

More information

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

Automating Information Lifecycle Management with

Automating Information Lifecycle Management with Automating Information Lifecycle Management with Oracle Database 2c The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

"Charting the Course... Oracle 18c DBA I (5 Day) Course Summary

Charting the Course... Oracle 18c DBA I (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager Database Express (EMDE), SQL Developer and SQL*Plus.

More information

An Oracle White Paper July Oracle Advanced Compression with Oracle Database 12c

An Oracle White Paper July Oracle Advanced Compression with Oracle Database 12c An Oracle White Paper July 2014 Oracle Advanced Compression with Oracle Database 12c Oracle White Paper Advanced Compression with Oracle Database 12c Introduction... 3 Oracle Advanced Compression... 4

More information

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version :

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version : Oracle 1Z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-034 QUESTION: 142 You executed the following query: SELECT oldest_flashback_scn,

More information

Successful Upgrade Secrets: Preventing Performance Problems with Database Replay

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

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo Oracle Exam Questions 1Z0-055 Oracle Database 11g: New Features for 9i OCPs Version:Demo 1. Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework? A. SQL statements

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 1Z1-054 Title : Oracle Database 11g: Performance Tuning Vendors : Oracle

More information

Segment Compression with. Oracle Database 11g. for DBAs and Developers

Segment Compression with. Oracle Database 11g. for DBAs and Developers Segment Compression with Oracle Advanced Compression in Database 11g Rel. 2: Oracle Database 11g Value/Performance for DBAs and Developers presentation for: the world's best user group... and... the world's

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : 1Z1-054 Title : Oracle Database 11g: Performance Tuning Version : DEMO 1 / 19 1. After running SQL Performance Analyzer (SPA), you observe a few regressed SQL statements in the SPA

More information

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Smart IO IO Resource Manager Compression Hands-on time Exadata Security Flash Cache Storage Indexes Parallel Execution Agenda

More information

An Oracle White Paper October Advanced Compression with Oracle Database 11g

An Oracle White Paper October Advanced Compression with Oracle Database 11g An Oracle White Paper October 2011 Advanced Compression with Oracle Database 11g Oracle White Paper Advanced Compression with Oracle Database 11g Introduction... 3 Oracle Advanced Compression... 4 Compression

More information

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.)

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) Volume: 183 Questions Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) A. The user cannot set privileges on persistent lightweight jobs. B. The use

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

Oracle Database: SQL and PL/SQL Fundamentals

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

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release

More information

Managing Oracle Database 12c with Oracle Enterprise Manager 12c

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

More information

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

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

More information

Oracle Database 11g: Self-Managing Database - The Next Generation

Oracle Database 11g: Self-Managing Database - The Next Generation Oracle Database 11g: Self-Managing Database - The Next Generation Katharina Römer Principal Sales Consultant Agenda Introduction Manage Performance & Resources Manage Fault

More information

To Cache or not to Cache; and How?

To Cache or not to Cache; and How? To Cache or not to Cache; and How? Presented by: John Jay King Download this paper from: 1 Session Objectives Understand Oracle s SQL & PL/SQL caching features Choose caching that is appropriate to the

More information

Database Performance Analysis Techniques Using Metric Extensions and SPA

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

More information

Hybrid Columnar Compression (HCC) on Oracle Database 18c O R A C L E W H IT E P A P E R FE B R U A R Y

Hybrid Columnar Compression (HCC) on Oracle Database 18c O R A C L E W H IT E P A P E R FE B R U A R Y Hybrid Columnar Compression (HCC) on Oracle Database 18c O R A C L E W H IT E P A P E R FE B R U A R Y 2 0 1 8 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Key to A Successful Exadata POC

Key to A Successful Exadata POC BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions 1Z0-034 Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-034 Exam on Upgrade Oracle9i/10g to Oracle Database 11g OCP... 2 Oracle 1Z0-034

More information

Oracle Database Performance Tuning, Benchmarks & Replication

Oracle Database Performance Tuning, Benchmarks & Replication Oracle Database Performance Tuning, Benchmarks & Replication Kapil Malhotra kapil.malhotra@software.dell.com Solutions Architect, Information Management Dell Software 2 11/29/2013 Software Database Tuning

More information

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

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

Oracle Database 11g: Administer a Data Warehouse

Oracle Database 11g: Administer a Data Warehouse Oracle Database 11g: Administer a Data Warehouse Duration: 4 Days What you will learn This course will help you understand the basic concepts of administering a data warehouse. You'll learn to use various

More information

REAL APPLICATION TESTING ON 10G STEP BY STEP

REAL APPLICATION TESTING ON 10G STEP BY STEP Alejandro Vargas Principal Support Consultant Oracle Advanced Customer Services Summary...3 Patches Required for RAT...4 Project Implementation Steps...5 Clone production database on test server, start

More information

An Oracle White Paper June Oracle Advanced Compression with Oracle Database 12c

An Oracle White Paper June Oracle Advanced Compression with Oracle Database 12c An Oracle White Paper June 2013 Oracle Advanced Compression with Oracle Database 12c Oracle White Paper Advanced Compression with Oracle Database 12c Introduction... 3 Oracle Advanced Compression... 4

More information

Oracle Database 11g: Administration Workshop I DBA Release 2

Oracle Database 11g: Administration Workshop I DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 What you will learn: This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Oralogic Education Systems

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

More information

Oracle 1Z Oracle Database 10g: Administration I. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration I. Download Full Version : Oracle 1Z0-042 Oracle Database 10g: Administration I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-042 Answer: A QUESTION: 273 You have a large amount of historical data in an

More information

Real Application Testing: An Introduction Harald van Breederode Oracle University 8-JUN-2010

Real Application Testing: An Introduction Harald van Breederode Oracle University 8-JUN-2010 Real Application Testing: An Introduction Harald van Breederode Oracle University 8-JUN-2010 1 About Me Senior Principal DBA Trainer Oracle University 25 years Unix Experience 12 years Oracle DBA Experience

More information

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 Executive Overview...3 Introduction...3 How It works...3 What can be compressed...4 Cost and

More information

"Charting the Course... Oracle 12c New Features for Administrators. Course Summary

Charting the Course... Oracle 12c New Features for Administrators. Course Summary Course Summary Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise Edition. Key features of this product are fully discussed and demonstrated.

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

Oracle DB-Tuning Essentials

Oracle DB-Tuning Essentials Infrastructure at your Service. Oracle DB-Tuning Essentials Agenda 1. The DB server and the tuning environment 2. Objective, Tuning versus Troubleshooting, Cost Based Optimizer 3. Object statistics 4.

More information