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

Size: px
Start display at page:

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

Transcription

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

2 Best Practices for Upgrading Oracle Database to 11g Release 2 2 Copyright 2011, Oracle and/or its affiliates. All rights Agrim Pandit & Anil Chanda Global Customer Support, Oracle

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

4 Agenda Why Upgrade? ROI What is Upgrade? 10 Best Practices Common Issues Real World Examples Q&A 4 Copyright 2011, Oracle and/or its affiliates. All rights

5 Why Upgrade? Oracle Database 11g R2 is fully proven In production for 2+ years Thousands of customers have already upgraded New features of Oracle Database 11gR2 Useful and desirable for your environment. Potential cost saver Oracle support period will be for long time 11gR2 will be supported till Jan 2015 on Premier Support and Jan 2018 on Extended Support (Oracle Lifetime Support) Extended Support fee can be avoided No bug fixes unless you pay extra support fee to get extended support for critical Issues for another year- "Wake Up Call" Patchset, CPU, PSUs and other bug fixes It is essential to have the most current security fixes. And you'll get them only during the premier support period unless you pay extra for extended support. 5 Copyright 2011, Oracle and/or its affiliates. All rights

6 Why Upgrade Continued 11gR2 gives you 6+ years of premier support 6 Copyright 2011, Oracle and/or its affiliates. All rights

7 What is Upgrade? Upgrade is the process of changing the data dictionary contents of a database to reflect a particular release of the server. For each version of the database we support upgrades and downgrades from a specific set of versions. Upgrading from 10.2 to 11.2 is a major release upgrade. Upgrading from to is a patch set upgrade. Choose an Upgrade Method Manual Upgrade: A manual upgrade consists of directly using SQLplus to perform any necessary actions to prepare for the upgrade, run the upgrade script, and analyze the upgrade results Database Upgrade Assistant (DBUA) :The DBUA is a graphical user interface (GUI) tool that interactively steps you through the upgrade process and configures the database to run with the new Oracle Database release. 7 Copyright 2011, Oracle and/or its affiliates. All rights

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

9 9 Copyright 2011, Oracle and/or its affiliates. All rights 10 Best Practices

10 Best Practice #1 Read the FRIENDLY manuals! 10 Copyright 2011, Oracle and/or its affiliates. All rights

11 Documentation Note Upgrade Advisors 11 Copyright 2011, Oracle and/or its affiliates. All rights

12 Documentation Note:251.1 Database Upgrades from 10.2 to Copyright 2011, Oracle and/or its affiliates. All rights

13 Documentation Note: Upgrade Companion 11g Release 2 13 Copyright 2011, Oracle and/or its affiliates. All rights

14 More useful references for upgrade Note:264.1 Database Upgrades from 9.2 to 11.2 Note: Upgrade Companion 11g Release 2 Note: Complete Checklist for Manual Upgrades to 11g Release 2 Note: Complete checklist for manual upgrades from X to Y Upgrade Guides: OTN Upgrade Page: Upgrade Blog: 14 Copyright 2011, Oracle and/or its affiliates. All rights

15 Best Practice #2 Always upgrade Grid Infrastructure (Clusterware and ASM) First! 15 Copyright 2011, Oracle and/or its affiliates. All rights

16 Best Practice #3 Use the Upgrade Planner in My Oracle Support 16 Copyright 2011, Oracle and/or its affiliates. All rights

17 Best Practice #4 Pre-upgrade Sanity operations 17 Copyright 2011, Oracle and/or its affiliates. All rights

18 18 Copyright 2011, Oracle and/or its affiliates. All rights 2010 Oracle Corporation 18 Sanity Operations: Database Components Resolve invalid database components before you upgrade: Make sure the software linked correctly. Remove components manually which are not in use. Fix components manually which are in use but invalid. Reference: Note: Information On Installed Database Components/Schemas Note Debug and Validate Invalid Objects Note: How to diagnose Components with NON VALID status Note How to Determine if XDB is Being Used in the Database?

19 Sanity Operations: Invalid Objects Always check for INVALID objects SQL> select unique OBJECT_NAME, OBJECT_TYPE, OWNER from DBA_OBJECTS where STATUS='INVALID'; Fix all INVALID objects BEFORE the upgrade/migration There should be no invalid objects in SYS and SYSTEM user schema Recompile invalid objects with utlrp.sql before the upgrade 19 Copyright 2011, Oracle and/or its affiliates. All rights

20 Sanity Operations: Duplicate Objects Always check for DUPLICATE objects in SYS/SYSTEM SQL> select OBJECT_NAME, OBJECT_TYPE from DBA_OBJECTS where OBJECT_NAME OBJECT_TYPE in (select OBJECT_NAME OBJECT_TYPE from DBA_OBJECTS where OWNER='SYS') and OWNER='SYSTEM' and OBJECT_NAME not in ('AQ$_SCHEDULES_PRIMARY', 'AQ$_SCHEDULES', 'DBMS_REPCAT_AUTH'); Fix DUPLICATE objects in SYS/SYSTEM BEFORE upgrade Note: How to Clean Up Duplicate Objects Owned by SYS and SYSTEM Schema 20 Copyright 2011, Oracle and/or its affiliates. All rights

21 Sanity Operations: Gather Schema Stats. Create dictionary statistics in Oracle 9i: SQL> exec DBMS_STATS.GATHER_SCHEMA_STATS ('SYS', options => 'GATHER',estimate_percent => DBMS_STATS.AUTO_SAMPLE_SIZE, method_opt => 'FOR ALL COLUMNS SIZE AUTO', cascade => TRUE); Create dictionary statistics in Oracle 10g/11g: SQL> exec DBMS_STATS.GATHER_DICTIONARY_STATS; 21 Copyright 2011, Oracle and/or its affiliates. All rights

22 Sanity operations : Pre-Process AUD$ record or Truncate SYS.AUD$ (if not required) How to Pre-Process SYS.AUD$ Records Pre-Upgrade From 10.1 or later to 11gR1 or later. (Doc ID ) OR SQL> truncate SYS.AUD$; Purge the recyclebin SQL> purge DBA_RECYCLEBIN; Remove old & hidden parameters _always_semi_join=off _unnest_subquery=false optimizer_features_enable=9.0.1 event = "10061 trace name context forever, level 10" 22 Copyright 2011, Oracle and/or its affiliates. All rights

23 Best Practice #5 Always run the pre-upgrade script: Download and run dbupgdiag.sql script before & after upgrade Script to Collect DB Upgrade/Migrate Diagnostic Information (dbupgdiag.sql) [ID ] 23 Copyright 2011, Oracle and/or its affiliates. All rights

24 Pre-Upgrade Checks Upgrade information script: utlu112i.sql Stored in: $OH_11g/rdbms/admin OR Download the newest version of the pre-upgrade check script utlu112i.sql: Note: Run in the environment of the source database Spool the output into a file: Checks all init parameters and displays warnings for obsolete and deprecated parameters Does checks for: Components status Tablespace SYSAUX Character set Time zone file version Cluster 24 Copyright 2011, Oracle and/or its affiliates. All rights

25 Preparation: Database Vault Switch off DATABASE VAULT (if used/installed) Oracle Database Vault Administrator's Guide: Appendix B Unix: (simplified) Relinking without Database Vault [$ make -f ins_rdbms.mk dv_off ioracle] $ chopt disable dv Windows: Rename oradv11.dll in ORACLE_HOME\bin Upon restart: $ chopt disable dv After upgrading relink with dv_on or rename the DLL and enable Database Vault again: $ chopt enable dv Note: This will just work under the assumption that DVSYS and the DV owning user have identical passwords 25 Copyright 2011, Oracle and/or its affiliates. All rights

26 Preparation: Time zone Patches - 11g Release 2 Upgrade to Oracle Database 11g Release 2: New 11.2-$OH has timezone V11 No need to patch the source $OH if TZ version < Target $OH Database only needs to be adjusted if you are using the datatype TIMESTAMP WITH TIMEZONE Conversion done after the upgrade See Note Package DBMS_DST DBMS_DST.FIND_AFFECTED_TABLES DBMS_DST.BEGIN_UPGRADE DBMS_DST.UPGRADE_DATABASE DBMS_DST.END_UPGRADE 26 Copyright 2011, Oracle and/or its affiliates. All rights

27 Prepration :Preserve performance statistics Collecting sufficient performance data prior to the upgrade is of vital importance, Sufficient means: Starting at least 4 weeks before the upgrade Gather accurate performance statistics In Oracle 8i/9i: Use STATSPACK Export the PERFSTAT user right before the upgrade Note: STATSPACK before/after upgrade In Oracle 10g/11g: Use AWR Take snapshots every minutes retention: >30 days Export the AWR with DBMS_SWRF_INTERNAL.AWR_EXTRACT Use AWR DIFF reports to compare before & after upgrade performance: DBMS_WORKLOAD_REPOSITORY.AWR_DIFF_REPORT_HTML 27 Copyright 2011, Oracle and/or its affiliates. All rights

28 Best Practice #6 Leave COMPATIBLE at the original value for a week before changing to COMPATIBLE has to be at least for an 11g database No way back once >= has been enabled Supported release downgrade to , >= , >= Flashback database to >= No ALTER DATABASE RESET COMPATIBILITY command anymore 28 Copyright 2011, Oracle and/or its affiliates. All rights

29 Best Practice #7 : Test fallback strategy In any case: Take a backup!!! Always: Create a valid and complete online backup with RMAN Test the restore and the recovery at least once!!! Make sure your fallback strategy covers both cases: Problems encountered during the upgrade Problems found days, weeks after the upgrade If anything unforeseen happens and you'll have to step back, will you be allowed to lose data (i.e. changes done to the data in the system after the upgrade): YES or NO? If YES: restore a backup, flashback (since 10g) If NO: export/import, downgrade, Oracle Streams, Oracle Golden Gate 29 Copyright 2011, Oracle and/or its affiliates. All rights

30 Fallback strategy: Issues during upgrade 30 Copyright 2011, Oracle and/or its affiliates. All rights

31 Fallback strategy: Issues After upgrade Assumption: No data loss allowed 31 Copyright 2011, Oracle and/or its affiliates. All rights

32 Best Practice #8 :Choose Upgrade PATH 32 Copyright 2011, Oracle and/or its affiliates. All rights

33 Upgrade alternatives: Minimal Downtime 33 Copyright 2011, Oracle and/or its affiliates. All rights

34 Upgrading database Step-by-Step 34 Copyright 2011, Oracle and/or its affiliates. All rights

35 Best Practice #9: Verify upgrade The DBUA has "spool" and "echo" on by default, Find the logs at: For DBUA $ORACLE_HOME/cfgtoollogs/dbua/<dbname>/upgrade<n>/ For manual method logs can be found at spooled location. Recompiling invalid objects Post-upgrade tool/utility Check if all components are valid: utlu112s.sql Dbupgdiag.sql output (run and check script to collect DB Upgrade/Migrate Diagnostic Information Note ) Check alert<sid>.log 35 Copyright 2011, Oracle and/or its affiliates. All rights

36 Best Practice #10: Post Upgrade Create system statistics during a regular workload period - otherwise non-appropriate values for the CBO will be used: SQL> exec DBMS_STATS.GATHER_SYSTEM_STATS('start');... gather statistics while running a typical workload SQL> exec DBMS_STATS.GATHER_SYSTEM_STATS('stop'); Always create an editable init.ora from the current SPFILE after the upgrade has been finished Prevents rewrite in case of setting wrong parameters or forced edit Keep in mind: The SPFILE is binary file!!! Don't edit it!! Default since Oracle 9.0 It simply will exist after using DBUA or DBCA Parameter can be changed by: SQL> create pfile='/tmp/initdb.ora' from spfile; SQL> startup force pfile=/tmp/initdb.ora SQL> create spfile from pfile; SQL> alter system set PARAMETER=VALUE scope=both; 36 Copyright 2011, Oracle and/or its affiliates. All rights

37 Common issues ORA-00904: "TZ_VERSION": invalid identifier Cause : If the registry$database table already exist in the database but does not have the TZ_VERSION column OR Time zone file version was not updated in registry$database. Solution :The error can be occurred if you have not executed the ultu112i.sql script on the source database prior to upgrade,it creates adds a TZ_VERSION column if does not exist and populate the column with TZ_VERSION value in registry$database.so make sure that you have execute the utlu112i.sql on the source database. ORA-39701: database must be mounted EXCLUSIVE for UPGRADE or DOWNGRADE Cause: It is a RAC database and was mounted for SHARED cluster access. Solution: Set the CLUSTER_DATABASE initialization parameter to FALSE in spfile/pfile and restart the server with the UPGRADE or DOWNGRADE option. 37 Copyright 2011, Oracle and/or its affiliates. All rights

38 Common issues continued ORA-01722: invalid number TimeZone Patch Cause: If the source database is using timezone files higher than default TZ version shipped with the target Oracle 11gR2 Oracle home and target Oracle home is NOT patched with the same version timezone before upgrade. Solution: Apply the TZ version patch on the target database to match the TZ version at source database then run the perupgrade script to populate the TZ_VERSION with new TZ version in the registry$database. Oracle Database Vault Cause: If the Oracle Database Vault option is TRUE. Upgrades cannot be run with the Oracle Database Vault option set to TRUE since AS SYSDBA connections are restricted. Solution: Perform a "SHUTDOWN ABORT", relink the server without the Database Vault option (but with the OLS option), and restart the server using UPGRADE. Oracle Label Security Cause: If Database Vault is installed in the database but the Oracle Label Security option is FALSE. Solution: relink the server with the OLS option (but without the Oracle Database Vault option) and restart the server using UPGRADE. 38 Copyright 2011, Oracle and/or its affiliates. All rights

39 Common issues continued ORA control file version <num> incompatible with Oracle version <num> Cause: You have set the compatible to the higher release and now try to open or downgrade the database with lower release. Solution: It is highly recommended to keep the compatible parameter to the least values.oracle recommends increasing the COMPATIBLE parameter only after complete testing of the upgraded database has been performed. Setting the compatible parameter to the highest value enables to use all of the features of the new release, but prevents from downgrading back to previous release. NOTE: If you are upgrading from x, the COMPATIBLE initialization parameter must be set to at least , which is the lowest possible setting for Oracle Database11g Release 2 (11.2) prior to the upgrade. 39 Copyright 2011, Oracle and/or its affiliates. All rights

40 Real world examples From support experience few interesting cases, Very small shared pool size when upgrading from 8i to 10g: Database upgrade run 48 hours instead of 1 hour Too small shared pool size when upgrade to 11g: ORA-4031 this leads to invalid objects Millions of audit records in SYS.AUD$ Upgrade took 24 hours once truncated upgrade completed in under 1 hour Objects of SYS users in user tablespace, upgrade fails with ora-0600 Customers forgot to analyze Dictionary Database Especially in huge dictionary database (like GSI or SAP) a big problem as we create stats while the upgrade runs 40 Copyright 2011, Oracle and/or its affiliates. All rights

41 Summary: Upgrade Best Practice Planning is a key to successful upgrade. A successful upgrade, requires minimal downtime, requires minimized, predictable efforts to upgrade, It produces a stable upgraded environment without any surprises. It identifies issues proactively and addresses them during the planning and testing phase. Drive upgrade as a project which should have Evaluate, Plan, Configure, Test, Implement stages. Upgrade Advisor Note Take consistent backup which is useful when its needed for recovery. Test upgrade in test environment, Optimize steps of upgrade to minimize upgrade window. Leverage tools of PreUpgrade, PostUpgrade even though DBUA is used. Don t underestimate test efforts, reserve enough time and resource for testing. Always use real world data for testing Create and test fallback strategy ( Does it really works?) Document all changes detailed and clearly in change log. 41 Copyright 2011, Oracle and/or its affiliates. All rights 2010 Oracle Corporation 41

42 42 Copyright 2011, Oracle and/or its affiliates. All rights Q&A

2010 Oracle Corporation 1

2010 Oracle Corporation 1 2010 Oracle Corporation 1 Best Practices for Upgrading to Oracle Database 11g Release 2 Roy F. Swonger Senior Director, Database Upgrade & Utilities 20-MAY-2010 Agenda Best Practices

More information

Oracle 10g Database Upgrade and Migration

Oracle 10g Database Upgrade and Migration Oracle 10g Database Upgrade and Migration Page 1 www.decus.de 1 Monika Dreher Product Technology Services ORACLE Corporation Agenda Upgrade to Oracle 10g Migrating to Oracle 10g Migration Resources Sample

More information

CHAPTER. Upgrading to Oracle Database 11g

CHAPTER. Upgrading to Oracle Database 11g CHAPTER 2 Upgrading to Oracle Database 11g 49 50 Oracle Database 11g DBA Handbook I f you have previously installed an earlier version of the Oracle database server, you can upgrade your database to Oracle

More information

APPLIES TO: PURPOSE SCOPE DETAILS. 1 of 7 1/28/ :32 PM. Master Note For Oracle Database Upgrades and Migrations (Doc ID

APPLIES TO: PURPOSE SCOPE DETAILS. 1 of 7 1/28/ :32 PM. Master Note For Oracle Database Upgrades and Migrations (Doc ID ocument 1152016.1 1 of 7 1/28/2015 11:32 PM Master Note For Oracle Database Upgrades and Migrations (Doc ID 1152016.1) In this Document Purpose Scope Details Ask Questions, Get Help, And Share Your Experiences

More information

Upgrading to 11g Best Practices

Upgrading to 11g Best Practices Upgrading to 11g Best Practices Ashish Agrawal Senior Principal Technical Support Engineer Oracle Center of Excellence Agenda Upgrade Companion Challenges & Best Practices AWR & STATSPACK

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

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

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

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Upgrade to Oracle Database 12c 何革新 Gexin.he@oracle.com The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

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

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2010 Upgrade Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade...

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

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

Migrating Oracle 11gR2 to Oracle 12cR1

Migrating Oracle 11gR2 to Oracle 12cR1 Migrating Oracle 11gR2 to Oracle 12cR1 Upgrading and migrating Oracle 11gR2 RAC Databases running on legacy infrastructure to Oracle 12c Pluggable Databases running on the latest Dell infrastructure. By:

More information

SQL (Structured Query Language)

SQL (Structured Query Language) Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Oracle DBA 11g SQL (Structured Query Language) Software Installation (Environment Setup for Oracle on Window10)

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 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 0845 777 7711 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn In this intensive course, you'll learn about

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 55-800-891-6502 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

1 Installation Issues and Recommendations

1 Installation Issues and Recommendations Oracle Database Vault Release Notes 10g Release 2 (10.2.0.5) for IBM AIX on POWER Systems (64-Bit) B32491-07 April 2013 These Release Notes describe issues you may encounter with Oracle Database Vault

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

Oracle Database. Upgrade Guide 11g Release 2 (11.2) E

Oracle Database. Upgrade Guide 11g Release 2 (11.2) E Oracle Database Upgrade Guide 11g Release 2 (11.2) E23633-04 October 2011 Oracle Database Upgrade Guide, 11g Release 2 (11.2) E23633-04 Copyright 2002, 2011, Oracle and/or its affiliates. All rights reserved.

More information

Database Vault Installation and Configuration

Database Vault Installation and Configuration Best Practice Document Version: 1.0 2015-02-20 Installation and Configuration Guide Document History Version Date Change 1.0 2015-02-20 Document creation 2 2015 SAP SE or an SAP affiliate company. All

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

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

Oracle Support for IBM Linux on System Z Update

Oracle Support for IBM Linux on System Z Update Oracle Support for IBM Linux on System Z Update Insert Picture Here Rhoda Sarmiento-Pereira SIG - Washington DC 2017 1 Safe Harbor Statement The following is intended to outline our general product direction.

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

Roy Swonger Vice President Database Upgrades & Utilities Oracle Corporation

Roy Swonger Vice President Database Upgrades & Utilities Oracle Corporation New Release and Patching Model For the Oracle Database Mike Dietrich Master Product Manager Database Upgrades & Migrations Oracle Corporation Roy Swonger Vice President Database Upgrades & Utilities Oracle

More information

Upgrade Completed Successfully. Has it Really??

Upgrade Completed Successfully. Has it Really?? www.ntirety.com Upgrade Completed Successfully. Has it Really?? NYOUG New York City September 29, 2005 Michael S. Abbey Database Officer Oracle Practice www.ntirety.com 2 Agenda The software / server Applications

More information

1 Installation Issues and Recommendations

1 Installation Issues and Recommendations Oracle Database Vault Release Notes 10g Release 2 (10.2.0.5) for Oracle Solaris on SPARC (64-Bit) B31293-08 April 2013 These Release Notes describe issues you may encounter with Oracle Database Vault 10g

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn In this intensive course, students will learn about the Oracle Grid Infrastructure products. This includes

More information

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Reduced Upgrade Memory & Migrate Footprint Oracle Database 12c Sandra Sandra Skehin Skehin Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Safe Harbor Statement The following is intended

More information

Non-Production Databases. Oracle Recovery Manager. Presented By: Jeff Branan - Database Architect

Non-Production Databases. Oracle Recovery Manager. Presented By: Jeff Branan - Database Architect Building and Maintaining Non-Production Databases using Oracle Recovery Manager Presented By: Jeff Branan - Database Architect Agenda Who is TDS? Why we use Recovery Manager (RMAN) TDS Non-Production Database

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

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Duration: 5 Days What you will learn This 11g

More information

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

More information

Hand-On-Lab November 24, 2015

Hand-On-Lab November 24, 2015 Hand-On-Lab November 24, 2015 Oracle Database 12c - Upgrade, Migration & Consolidation Roy Swonger Senior Director and Product Manager ST Database Utilities ORACLE Corporation Mike Dietrich Senior Principal

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

"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

Tablespace Usage By Schema In Oracle 11g Rac

Tablespace Usage By Schema In Oracle 11g Rac Tablespace Usage By Schema In Oracle 11g Rac The APPS schema has access to the complete Oracle E-Business Suite data model. E-Business Suite Release 12.2 requires an Oracle database block size of 8K. An

More information

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

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

More information

Oracle Audit Vault. 1 Downloading the Latest Version of This Document. 2 Installing the Oracle Audit Vault Patch Set on the Audit Vault Server

Oracle Audit Vault. 1 Downloading the Latest Version of This Document. 2 Installing the Oracle Audit Vault Patch Set on the Audit Vault Server Oracle Audit Vault Release Notes Patch Set 2 Release 10.2.3.2 E14466-02 November 2009 These Release Notes contain important information that was not included in the Oracle Audit Vault Patch Set 2 Release

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

SAP Bundle Patches - Patch Management with Oracle 12c

SAP Bundle Patches - Patch Management with Oracle 12c SAP Bundle Patches - Patch Management with Oracle 12c Tanja Albrecht Senior Principal Advanced Support Engineer SAP Expertise Center June 30 2015 Copyright 2014 Oracle and/or its affiliates. All rights

More information

Oracle Database 12c: RAC Administration Ed 1

Oracle Database 12c: RAC Administration Ed 1 Oracle University Contact Us: +7 (495) 641-14-00 Oracle Database 12c: RAC Administration Ed 1 Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you about

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

Re-platforming the E-Business Suite Database

Re-platforming the E-Business Suite Database Re-platforming the E-Business Suite Database Ahmed Alomari Performance Specialist aalomari@cybernoor.com Database SIG Agenda Options Case Study Q & A Options Re-platforming Options Transportable DB Transportable

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

12.1 Multitenancy in real life

12.1 Multitenancy in real life 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest, 2017-11-08 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation

More information

Hitchhiker's Guide. to upgrade to Oracle Database 12c. Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation

Hitchhiker's Guide. to upgrade to Oracle Database 12c. Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation Hitchhiker's Guide to upgrade to Oracle Database 12c Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation Updated: 3-APR-2014 Hitchhiker's Guide to Oracle Database Upgrades

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 Database 12c: RAC Administration Ed 1 LVC

Oracle Database 12c: RAC Administration Ed 1 LVC Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: RAC Administration Ed 1 LVC Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you

More information

ORACLE REFERENCE 11GR2 MANUAL DOCUMENT

ORACLE REFERENCE 11GR2 MANUAL DOCUMENT 09 May, 2018 ORACLE REFERENCE 11GR2 MANUAL DOCUMENT Document Filetype: PDF 483.77 KB 0 ORACLE REFERENCE 11GR2 MANUAL DOCUMENT A MANUAL setting does not prevent Oracle Restart from monitoring the service

More information

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

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

More information

Managing an Oracle Instance

Managing an Oracle Instance Managing an Oracle Instance Date: 07.10.2009 Instructor: SL. Dr. Ing. Ciprian Dobre 1 Objectives After completing this lesson, you should be able to do the following: Create and manage initialization parameter

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals of basic database

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

ActiveImage Protector 2016R2SP1. Backup and Recovery of Oracle Database Second Edition - March 23, 2017

ActiveImage Protector 2016R2SP1. Backup and Recovery of Oracle Database Second Edition - March 23, 2017 ActiveImage Protector 2016R2SP1 Backup and Recovery of Oracle Database Second Edition - March 23, 2017 This user guide provides a description about backup and recovery procedures of Oracle database by

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

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Re-Engineering Your Database Design with Oracle SQL Developer Data Modeler Swarnapriya Shridhar Curriculum IDC Operations Manager 2

More information

Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature

Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature This note describes the procedure used to perform a 32 bit to 64 bit conversion of an 11.2.0.3 database on the Linux

More information

Tips and Tricks on Successful Upgrade to 11gR2

Tips and Tricks on Successful Upgrade to 11gR2 Tips and Tricks on Successful Upgrade to 11gR2 Project Approval Get buy in from CIO and other groups Justify the need End of premier support Extended Support Cost To be current Benefits of new release

More information

CHAPTER. Oracle Database 11g Getting Started. Copyright 2008 by The McGraw-Hill Companies, Inc.

CHAPTER. Oracle Database 11g Getting Started. Copyright 2008 by The McGraw-Hill Companies, Inc. CHAPTER 1 Oracle Database 11g Getting Started 1 2 Oracle Database 11g New Features nce again we set out on the adventure of discovery. As I did in my O previous titles Oracle9i New Features and Oracle

More information

An Oracle White Paper July Methods for Downgrading from Oracle Database 11g Release 2

An Oracle White Paper July Methods for Downgrading from Oracle Database 11g Release 2 An Oracle White Paper July 2011 Methods for Downgrading from Oracle Database 11g Release 2 Introduction... 2 Oracle Database Downgrade Methods... 3 Downgrade Script... 3 Oracle Data Pump Export/Import

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

Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358

Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358 Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358 Michael Brown Colibri Limited mbrown@colibrilimited.com http://www.colibrilimited.com http://blog.michael-brown.org

More information

SAP Bundle Patches - Patch Management with Oracle 12c Subtitle

SAP Bundle Patches - Patch Management with Oracle 12c Subtitle SAP Bundle Patches - Patch Management with Oracle 12c Subtitle Tanja Albrecht Senior Principal Advanced Support Engineer SAP Expertise Center February 17, 2016 Safe Harbor Statement The following is intended

More information

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle 1z0-052 Oracle Database 11g: Administration I Version: 7.0 Topic 1, Volume A Oracle 1z0-052 Exam QUESTION NO: 1 You notice that the performance of the database has degraded because of frequent checkpoints.

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Create A Private Database Link In Another Schema In Oracle 11g Drop >>>CLICK HERE<<<

Create A Private Database Link In Another Schema In Oracle 11g Drop >>>CLICK HERE<<< Create A Private Database Link In Another Schema In Oracle 11g Drop Posts about create database link in another schema written by John Hallas. 11g new features 12c new features addm ASM Blogroll Grid control

More information

Oracle Database. Readme 11g Release 2 (11.2) E

Oracle Database. Readme 11g Release 2 (11.2) E Oracle Database Readme 11g Release 2 (11.2) E41331-03 January 2014 Describes important last-minute features and changes not included in the Oracle Database Documentation Library for 11g Release 2 (11.2)

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle

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

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle Database 11g: Administration Workshop I Duration: 5 Days What you will learn This course is designed to give students a firm foundation in basic administration of Oracle Database 11g. In this class,

More information

Manually Create Sql Profile Oracle 10g

Manually Create Sql Profile Oracle 10g Manually Create Sql Profile Oracle 10g Using the CREATE PROFILE or ALTER PROFILE Statement to Set a If you created your database manually, then you should run the secconf.sql script to apply Finding and

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

Oracle Transportation Management. Migration Guide Release 6.2 Part No. E

Oracle Transportation Management. Migration Guide Release 6.2 Part No. E Oracle Transportation Management Migration Guide Release 6.2 Part No. E20095-04 December 2012 Oracle Transportation Management Migration Guide, Release 6.2 Part No. E20095-0 Copyright 2001, 2012, Oracle

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

Oracle Database. Upgrade Guide 10g Release 2 (10.2) B

Oracle Database. Upgrade Guide 10g Release 2 (10.2) B Oracle Database Upgrade Guide 10g Release 2 (10.2) B14238-02 January 2008 Oracle Database Upgrade Guide, 10g Release 2 (10.2) B14238-02 Copyright 2002, 2008, Oracle. All rights reserved. Primary Author:

More information

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

Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Duration: 5 Days What you will learn Throughout the lessons of the Oracle Database 12c

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 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure

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

Internals of Active Dataguard. Saibabu Devabhaktuni

Internals of Active Dataguard. Saibabu Devabhaktuni Internals of Active Dataguard Saibabu Devabhaktuni PayPal DB Engineering team Sehmuz Bayhan Our visionary director Saibabu Devabhaktuni Sr manager of DB engineering team http://sai-oracle.blogspot.com

More information

PASS4TEST 専門 IT 認証試験問題集提供者

PASS4TEST 専門 IT 認証試験問題集提供者 PASS4TEST 専門 IT 認証試験問題集提供者 http://www.pass4test.jp 1 年で無料進級することに提供する Exam : 1z0-052 Title : Oracle Database 11g: Administration I Vendor : Oracle Version : DEMO Get Latest & Valid 1Z0-052 Exam's Question

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

More information

Migration Assistant User Guide

Migration Assistant User Guide Migration Assistant User Guide 10.1.0 Getting started with Migration Assistant, Troubleshooting Migration Assistant Note: The Fusion 3 Migration Assistant is not compatible with OS X 10.7 (Lion). PM45053,

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo Oracle Exam Questions 1Z0-052 Oracle Database 11g: Administration I Version:Demo 1. You notice that the performance of the database has degraded because of frequent checkpoints. Which two actions resolve

More information

Exam : 1Z Oracle Database 11g: New Features for Administrators. Title : Version : Demo. The safer, easier way to help you pass any IT exams.

Exam : 1Z Oracle Database 11g: New Features for Administrators. Title : Version : Demo. The safer, easier way to help you pass any IT exams. http://www.51- pass.com Exam : 1Z1-050 Title : Oracle Database 11g: New Features for Administrators Version : Demo 1 / 7 1. You are managing the APPPROD database as a DBA. You plan to duplicate this database

More information

Oracle Database Vault

Oracle Database Vault Oracle Database Vault DBA Administrative Best Practices ORACLE WHITE PAPER MAY 2015 Table of Contents Introduction 2 Database Administration Tasks Summary 3 General Database Administration Tasks 4 Managing

More information

Oracle 12c Grid Infrastructure Management Repository Everything You Wanted To Know

Oracle 12c Grid Infrastructure Management Repository Everything You Wanted To Know Oracle 12c Grid Infrastructure Management Repository Everything You Wanted To Know Mark V. Scardina - Director Oracle QoS Management & Oracle Autonomous Health Framework Copyright 2016, Oracle and/or its

More information

Oracle Database Readme 11g Release 2 (11.2)

Oracle Database Readme 11g Release 2 (11.2) Oracle Database Readme 11g Release 2 (11.2) E41331-13 August 2018 Describes last-minute features and changes not included in the Oracle Database Documentation Library for Oracle Database 11g Release 2

More information

2 Upgrading from Oracle Audit Vault x to 10.3.x

2 Upgrading from Oracle Audit Vault x to 10.3.x Oracle Audit Vault Release Notes Release 10.3 E23572-09 November 2012 These Release Notes contain important information that was not included in the Oracle Audit Vault Release 10.3 documentation. This

More information

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

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

More information

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Duration: 5 Days What you will learn This Oracle Database 12c: Clusterware & RAC Admin Accelerated

More information

How to Troubleshoot Databases and Exadata Using Oracle Log Analytics

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

More information

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product Oracle EXAM - 1Z0-058 Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration Buy Full Product http://www.examskey.com/1z0-058.html Examskey Oracle 1Z0-058 exam demo product

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

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Keywords Oracle RAC on Standard Edition Standby Database with RAC on Standard Edition Different standby database

More information