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

Size: px
Start display at page:

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

Transcription

1 Reduced Upgrade Memory & Migrate Footprint Oracle Database 12c Sandra Sandra Skehin Skehin Boeblingen Bootcamp February 2014 SIG Washington DC April 2014

2 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 to deliver any material, code, or functionality, and should not be relied upon in making purchasing decision. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 2

3 Agenda Different Ways to Upgrade, Migrate & Consolidate with Oracle Database 12c 3

4 Terminology: Upgrade vs. Migration Database Upgrade Dictionary only No data will be touched, changed or moved Migration Move to new hardware, a new OS, another character set NOTE: YOU MUST UPGRADE ASM BEFORE THE DATABASE 4

5 Upgrade to Oracle Database 12c Oracle Oracle Oracle Oracle Oracle Oracle Oracle 9.2 (GA: Jul 2002) Oracle 10.1 (GA: Jan 2004) Oracle 10.2 (GA: Jul 2005) Oracle 11.1 (GA: Aug 2007) Oracle 11.2 (GA: Sep 2009) DIRECT DIRECT DIRECT Please note: This graph will apply to database upgrades only! 5

6 Upgrade Options to Oracle Database 12c Oracle 10.2 expdp/impdp Less Downtime? Near-Zero Downtime? DBUA HW Transient Standby Oracle Oracle /4 catctl.pl Logical Standby Transportable Tablespaces Full Transportable Exp/Imp + Golden Gate RMAN Inc Bck 6

7 Migration Options to Oracle Database 12c Oracle 10.2 expdp/impdp Less Downtime? Near-Zero Downtime? CTAS, COPY Oracle Oracle /4 SQL*Loader TDB Only same Endianness Transportable Tablespaces Full Transportable Exp/Imp + + Golden Gate RMAN Inc Bck 7

8 Agenda Supported Versions Database Upgrade Enhancements Plug into Oracle Multitenant Information and Resources 12

9 Upgrade SQL Automation New Pre-Upgrade Script preupgrd.sql Executes pre-upgrade checks Runs in source environment Generates fixup scripts preupgrade_fixups.sql postupgrade_fixups.sql MOS Note:

10 Faster Upgrade Less Downtime New Parallel Upgrade catctl.pl catctl.pl Runs database upgrade in parallel script1.sql script2.sql script3.sql Up to 40% faster upgrade script4.sql script7.sql script9.sql Used and proven by selected Oracle Database 11g customers script5.sql script8.sql script10.sql script6.sql script11.sql script6.sql 14

11 Faster Upgrade Less Downtime New Parallel Upgrade $> $ORACLE_HOME/perl/bin/perl catctl.pl -n 8 catupgrd.sql 15

12 Simplified Upgrade Database Upgrade Assistant Pre-Upgrade Automation Parallel Upgrade RMAN Integration Guaranteed Restore Points Activity and Alert Log 16

13 Agenda Supported Versions Database Upgrade Enhancements Plug into Oracle Multitenant Information and Resources 17

14 Plug into Oracle Multitenant Roads to Pluggable Databases Creation of a new PDB Cloning a PDB Upgrade and plugin as PDB Full Transportable Export/Import 18

15 Creation of a New Pluggable Database Fast provisioning from PDB$SEED create pluggable database PDB1 admin user adm1 identified by pwd; PDB_FILE_NAME_CONVERT Import data with impdp Dump file or NETWORK_LINK imp for Oracle 9i PDB$ SEED PDB1 i m p d p CDB 19

16 Plug into Oracle Multitenant Roads to Pluggable Databases Creation of a new PDB Cloning a PDB Upgrade and plugin as PDB Full Transportable Export/Import 20

17 Cloning of a Pluggable Database Fast cloning of a PDB Local: create pluggable database PDB2 from PDB1; Remote: create pluggable database PDB1 from PDB1@CDB1; Planned for a future patch set or release PDB$ SEED PDB$ SEED PDB1 CDB1 PDB1 CDB2 PDB2 21

18 Plug into Oracle Multitenant Roads to Pluggable Databases Creation of a new PDB Cloning a PDB Upgrade and plugin as PDB Full Transportable Export/Import 22

19 Upgrade and Plugin as PDB Database upgrade Start database read-only Create XML description file exec DBMS_PDB.DESCRIBE('PDB1.xml'); Shutdown database Plugin database create pluggable database PDB1 using ('PDB1.xml') nocopy tempfile reuse; Sanity operations start?/rdbms/admin/noncdb_to_pdb.sql PDB$ SEED PDB1 CDB DB1 PDB1 xml 23

20 Plug into Oracle Multitenant Roads to Pluggable Databases Creation of a new PDB Cloning a PDB Upgrade and plugin as PDB Full Transportable Export/Import 24

21 Traditional Transportable Tablespaces Rebuild meta information (views, synonyms, trigger, roles etc) SOURCE Database DESTINATION Database APP HUGO Read Only SYSTEM SYSAUX UNDO TEMP VIEWS CODE PRIVS APP HUGO SYSTEM SYSAUX UNDO TEMP VIEWS CODE PRIVS 25

22 Full Transportable Export/Import Combining: Transportable Tablespaces with Data Pump taking care of all meta information with optional RMAN incremental backups to decrease downtime This works: Cross platform With or without Oracle Multitenant Source can be Oracle (recommend ) Target must be at least Oracle

23 Full Transportable Export/Import with Copies SOURCE Database DESTINATION Database VIEWS VIEWS APP HUGO Read Only SYSTEM SYSAUX UNDO TEMP CODE PRIVS Data Pump APP HUGO SYSTEM SYSAUX UNDO TEMP CODE PRIVS 27

24 Full Transportable Export/Import with Backups Convert and apply backups SOURCE Database DESTINATION Database VIEWS VIEWS APP HUGO Read Only SYSTEM SYSAUX UNDO TEMP CODE PRIVS Data Pump APP HUGO SYSTEM SYSAUX UNDO TEMP CODE PRIVS 28

25 Agenda Supported Versions Database Upgrade Enhancements Plug into Oracle Multitenant Information and Resources 29

26 Summary Upgrade to Oracle Database 12c Now parallel and faster Detailed checks and fixup scripts Plug into Oracle Multitenant Many options Full Transportable Export/Import Simplifies Transportable Tablespaces Works cross platform Minimal downtime with RMAN 30

27 Resources Tech White Paper: Upgrade to Oracle Database 12c Tech White Paper: Full Transportable Export-Import 31

28 Example: Full Transportable Tablespace expdmp/impdmp New Full Transportable Tablespace Application Data? Tablespaces Read only mode 32

29 Environments: Source Database IBM: Linux on System z TBSpace Name Datafile Name HR_1 /u01/app/oracle/oradata/hr_db/hr_101.dbf HR_2 /u01/app/oracle/oradata/hr_db/hr_102.dbf Target Database IBM: Linux on System z Target ORACLE_SID HR_PDB Datafiles /u01/app/oracle/oradata/hr_pdb/ 33

30 Checks and Setup on Source Ensure no logical or physical dependencies between objects in different tablespaces which are NOT being transported.: Containment check as follows:- SQL> EXECUTE DBMS_TTS.TRANSPORT_SET_CHECK('hr_1,hr_2', TRUE); Check for violations from above as follows:- SQL> SELECT * FROM TRANSPORT_SET_VIOLATIONS Create a directory object in the source DB SQL> CREATE DIRECTORY dp_dir AS /u01/app/datafiles ; Place the hr_1 and hr_2 tablespaces in read-only mode for duration of export. SQL> ALTER TABLESPACE hr_1 READ ONLY; SQL> ALTER TABLESPACE hr_2 READ ONLY; 34

31 Full Transportable Tablespace Migration Invoke the Data Pump export utility: expdp system/manager full=y transportable=always version=12 \ directory=dp_dir dumpfile=full_tts.dmp metrics=y exclude=statistics \ logfile=full_tts_export.log Note: VERSION=12 because source is Check export Log for list of data files to be moved On Target server copy all datafiles to be moved... $ cd /u01/app/oracle/oradata/hr_pdb/ $ cp /net/<source-server>/u01/app/oracle/oradata/hr_db/hr_101.dbf. $ cp /net/<source-server>/u01/app/oracle/oradata/hr_db/hr_102.dbf

32 Full Transportable Tablespace Migration Create a directory object on the destination database for import:- SQL> CREATE DIRECTORY dp_dir AS '/u01/app/oracle/oradata/hr_pdb'; SQL> GRANT read, write on directory dp_dir to system; Invoke full transportable import on destination PDB database:- $ impdp system/manager@hr_pdb directory=dp_dir \ dumpfile=full_tts.dmp logfile=full_tts_imp.log metrics=y \ transport_datafiles='/u01/app/oracle/oradata/hr_pdb/hr_101.dbf',\ '/u01/app/oracle/oradata/hr_pdb/hr_102.dbf' Note: Command line or parameter file can be used Check import log file for errors 36

33 Full Transportable Tablespace Migration On completion of import, tablespaces will be placed in read/write mode on destination PDB. SQL> ALTER TABLESPACE hr_1 READ WRITE; SQL> ALTER TABLESPACE hr_2 READ WRITE; Reference: White Paper. Return source database tablespaces to read/write once import has completed: pdf Note: NFS mount point 12c impdp requires volume exported with (insecure) option # cat /etc/exports /nfs *(rw,no_root_squash,insecure) ORA May require Fix for Patch ( x and 12.1)) 37

34 Full Transportable Tablespace Migration Limitations:- Tablespaces in read-only mode a problem RMAN backups can be used. Different endianness :- RMAN CONVERT DATAFILE command to convert the data. GET_FILE or PUT_FILE procedures from the DBMS_FILE_TRANSFER package No transport of encrypted tablespaces to platform of different endianness XDB repository cannot be transported(xml schemas can!) AWR repository cannot be transported Use the awrextr.sql and awrload.sql scripts to move between source and target dbs Source and target databases must use compatible database character sets 38

35 Demo Upgrade > Preupgrd.sql DBUA Plug in upgraded db to Container Database Database upgrade Start database read-only Create XML description file» exec dbms_pdb.describe(pdb_descr_file=>'/home/oracle/sig1unplug.xml'); Shutdown database Plugin database» create pluggable database PDB3 as clone using '/home/oracle/sig1unplug.xml'; Sanity 39

36 40

37 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. 41

38 42

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

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

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

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff 1 What s New with Oracle Data Pump in Oracle Database 12c Dean Gagne Consulting Member of Technical Staff Program Agenda Full Transportable Export/Import Exporting Views as Tables Detailed Timestamps for

More information

Oracle Database 12c for SAP

Oracle Database 12c for SAP Oracle Database 12c for SAP Oracle Multitenant Christoph Kersten Oracle/SAP Global Technology Center Walldorf, Germany November 2016 Safe Harbor Statement The following is intended to outline our general

More information

Mike Dietrich Senior Principal Technologist Database Upgrade Oracle Corporation

Mike Dietrich Senior Principal Technologist Database Upgrade Oracle Corporation Oracle Multitenant Database Upgrade Internals Mike Dietrich Senior Principal Technologist Database Upgrade Oracle Corporation Updated: 20-NOV-2014 12:58h Copyright 2014 Oracle and/or its affiliates. All

More information

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-1 Migration Preparation Operations 1 Capture database file metadata 2 Verify COMPATIBLE setting 3 Create INCREMENTAL

More information

RMAN: Cross-Platform Backup & Restore Oracle Database 12c for SAP

RMAN: Cross-Platform Backup & Restore Oracle Database 12c for SAP RMAN: Cross-Platform Backup & Restore Oracle Database 12c for SAP Abdel Boukachabine Oracle/SAP Global Technology Center Walldorf, Germany June 2017 abdelrhani.boukachabine@oracle.com Copyright 2017 Oracle

More information

Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex

Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex kgilpin@advizex.com Agenda Brief Description and Justification of Multitenant CDB/PDB Creation

More information

Feature of our Oracle Databases - Why should we migrate to Multitenant architecture

Feature of our Oracle Databases - Why should we migrate to Multitenant architecture Feature of our Oracle Databases - Why should we migrate to Multitenant architecture Radosław Cisz rcisz@dataconsulting.pl Multitenant New Terminology Basic terminology connected with multitenant architecture

More information

Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation

Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation Migrate +200 TB databases in less than 1 day Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation $> whoami 20+ years w/oracle 15 years managing Data Pump Database Upgrade SQL*Loader

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

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

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

Migrate +230 TB databases in less than 1 day

Migrate +230 TB databases in less than 1 day Migrate +230 TB databases in less than 1 day Mike Dietrich Master Product Manager Database Upgrades & Migrations Oracle Corporation Copyright 2017, Oracle and/or its affiliates. All rights reserved. Germany

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

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Duration: 4 Days What you will learn During the Oracle Database

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

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

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

More information

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

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

More information

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now The Speaker Alain Fuhrer, born in 1986 Bachelor in computer science Working with Oracle databases for about 12 years now Head IT Databases at Swiss Mobiliar Insurance REPORTS ANALYTICS AUF ON OLTP DATEN

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

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 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS

ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS Kirill Loifman, 21/02/2013 Oracle Certified Professional DBA email: loifmkir@gmail.com www: dadbm.com Twitter: @loifmkir ORACLE 12C PLUGGABLE DATABASE (PDB)

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

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

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

Course: Oracle Database 12c R2: Administration Workshop Ed 3

Course: Oracle Database 12c R2: Administration Workshop Ed 3 Course: Oracle Database 12c R2: Administration Workshop Ed 3 The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation in administration of an Oracle

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

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

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

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 - Oracle Database 12c R2: Administration Workshop Ed 3

Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Code: Lengt h: URL: 12cDB-A 5 days View Online The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with

More information

Steps Create Physical Standby Database Oracle 9i

Steps Create Physical Standby Database Oracle 9i Steps Create Physical Standby Database Oracle 9i Upgrading from Oracle Database 9i Release 2 (9.2) to Oracle Database 12c Release The standby database is a physical standby database. The following steps

More information

1z0-062.exam.215q 1z0-062 Oracle Database 12c: Installation and Administration

1z0-062.exam.215q 1z0-062 Oracle Database 12c: Installation and Administration 1z0-062.exam.215q Number: 1z0-062 Passing Score: 800 Time Limit: 120 min 1z0-062 Oracle Database 12c: Installation and Administration Exam A QUESTION 1 You notice a high number of waits for the db file

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

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version : DEMO Get Latest &

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

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

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Provide One Year Free Update!

Provide One Year Free Update! QUESTION & ANSWER HIGHER QUALITY, BETTER SERVICE Provide One Year Free Update! https://www.passquestion.com Exam : 1Z0-060 Title : Upgrade to Oracle Database 12c Version : DEMO 1 / 4 1.Your multitenant

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

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

DOAG 2013 Oracle 12c Backup & Recovery

DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. About me David Hueber Head of Service Management Senior Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com

More information

Why 12c How and why upgrade now

Why 12c How and why upgrade now Why 12c How and why upgrade now Andy Cleverly andy.cleverly@oracle.com Director Database Technology Oracle EMEA Technology Safe Harbor Statement The following is intended to outline our general product

More information

What is new on 12c For Backup and Recovery. By: Francisco Munoz Alvarez

What is new on 12c For Backup and Recovery. By: Francisco Munoz Alvarez What is new on 12c For Backup and Recovery By: Francisco Munoz Alvarez About the Speaker Francisco Munoz Alvarez Oracle ACE Director CLOUG (Chilean Oracle Users Group) President LAOUC (Latin American Oracle

More information

Oracle Database 12c: New Features for Administrators Duration: 5 Days

Oracle Database 12c: New Features for Administrators Duration: 5 Days Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you ll learn about the new and enhanced features

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

More information

Oracle Database 12c: New Features for Administrators NEW

Oracle Database 12c: New Features for Administrators NEW Oracle Database 12c: New Features for Administrators NEW Duration: 5 Days Course Objectives Create, manage and monitor multitenant container database and pluggable databases Manage datafile online operations,

More information

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

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

More information

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

1z0-063.exam. Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0. Oracle. 1z Oracle Database 12c: Advanced Administration

1z0-063.exam. Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0. Oracle. 1z Oracle Database 12c: Advanced Administration 1z0-063.exam Number: 1z0-063 Passing Score: 800 Time Limit: 120 min File Version: 3.0 Oracle 1z0-063 Oracle Database 12c: Advanced Administration Version 3.0 Exam A QUESTION 1 Examine the steps to configure

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

Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance

Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance to Oracle Database 12.2 Real World Cases Mike Dietrich Master Product Manager Database s & Migrations Oracle Corporation Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance Presented with

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

Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed

Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed Jim Czuprynski Zero Defect Computing, Inc. 1 My Credentials 30+ years of database-centric IT experience Oracle

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

ORACLE DBA I. Exploring Oracle Database Architecture

ORACLE DBA I. Exploring Oracle Database Architecture ORACLE DBA I Exploring Oracle Database Architecture Introducing Oracle Database Relation Database Models Oracle SQL and PL/SQL Oracle Database Server Architecture Connecting to Oracle Databases Oracle

More information

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

Exam Questions 1Z0-062

Exam Questions 1Z0-062 Exam Questions 1Z0-062 Oracle Database 12c: Installation and Administration https://www.2passeasy.com/dumps/1z0-062/ 1. You are required to migrate your 11.2.0.3 database as a pluggable database (PDB)

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

A. connecting to the target database and a recovery catalog to execute the duplicate command

A. connecting to the target database and a recovery catalog to execute the duplicate command Volume: 175 Questions Question No : 1 Which two are prerequisites for creating a backup-based duplicate database? A. connecting to the target database and a recovery catalog to execute the duplicate command

More information

1z z0-060 Upgrade to Oracle Database 12c

1z z0-060 Upgrade to Oracle Database 12c 1z0-060 Number: 1z0-060 Passing Score: 800 Time Limit: 120 min File Version: 7.1 1z0-060 Upgrade to Oracle Database 12c Exam A QUESTION 1 Your multitenant container (CDB) contains two pluggable databases

More information

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year!

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year! DUMP STEP Question & Answer ACCURATE STUDY GUIDES, HIGH PASSING RATE! Dump Step provides update free of charge in one year! http://www.dumpstep.com Exam : 1Z1-060 Title : Upgrade to 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

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

Data Migration Customer Experiences

Data Migration Customer Experiences Data Migration Customer Experiences with Linux on System z David Simpson - Oracle Technical Specialist, IBM (simpson.dave@us.ibm.com) Copyright and Trademark Information For IBM can be found at http://www.ibm.com/legal/us/en/copytrade.shtml

More information

Oracle Database Unplugging, Plugging, and Upgrading a PDB to a New CDB. 18c

Oracle Database Unplugging, Plugging, and Upgrading a PDB to a New CDB. 18c Oracle Database Unplugging, Plugging, and Upgrading a PDB to a New CDB 18c E97285-02 September 2018 Oracle Database Unplugging, Plugging, and Upgrading a PDB to a New CDB, 18c E97285-02 Copyright 2018,

More information

Oracle 10g Move Table To Another Schema

Oracle 10g Move Table To Another Schema Oracle 10g Move Table To Another Schema Export the tables from different schemas in Oracle 10g database on a Linux server. (oracle@localhost ~)$ sqlplus / as sysdba. a1 and a2 are 2 schemas. Maybe you

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 : 1z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO

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

What s New in 12c for Backup & Recovery? By: Francisco Munoz Alvarez

What s New in 12c for Backup & Recovery? By: Francisco Munoz Alvarez What s New in 12c for Backup & Recovery? By: Francisco Munoz Alvarez About the Speaker Francisco Munoz Alvarez Oracle ACE Director CLOUG (Chilean Oracle Users Group) President LAOUC (Latin American Oracle

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 12c R1: New Features for Administrators Ed 2

Oracle Database 12c R1: New Features for Administrators Ed 2 Oracle Database 12c R1: New Features for Administrators Ed 2 Duration 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators Ed 2 course, you ll learn about the new and

More information

B. Enable secure access to the DBaaS instance VM and database instance from remote hosts by using SSH.

B. Enable secure access to the DBaaS instance VM and database instance from remote hosts by using SSH. Volume: 70 Questions Question No: 1 You want all your colleagues to be able to access the compute node associated with an Oracle Database Cloud - Database as a Service (DBaaS) instance. You want them to

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

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

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps Oracle 1Z0-497 Dumps with Valid 1Z0-497 Exam Questions PDF [2018] The Oracle 1Z0-497 Oracle Database 12c Essentials exam is an ultimate source for professionals to retain their credentials dynamic. And

More information

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 6: Migrating to Exadata Exadata MAA Best Practices Series Session 6: Migrating to Exadata Doug Utzig Doug Utzig Exadata and MAA Best Practices Exadata MAA Best Practices Series 1. E-Business Suite on Exadata

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

Databases Clone using ACFS. Infrastructure at your Service.

Databases Clone using ACFS. Infrastructure at your Service. Infrastructure at your Service. About me Infrastructure at your Service. David Hueber COO Principal Consultant +41 79 963 43 68 david.hueber[at]dbi-services.com Page 2 Who we are dbi services Experts At

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

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

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 The following is intended to outline Oracle s general product direction. It is intended for information purposes only, and may not be incorporated

More information

What was new in 11g for Backup and Recovery? Contents

What was new in 11g for Backup and Recovery? Contents What was new in 11g for Backup and Recovery? Contents Introduction... 3 RMAN New Features and Enhancements... 3 Proactive Health Check... 3 Database Recovery Advisor... 6 Faster Backup Compression... 11

More information

Oracle RMAN for Absolute Beginners

Oracle RMAN for Absolute Beginners Oracle RMAN for Absolute Beginners Darl Kuhn Apress Contents About the Author Acknowledgments Introduction xvii xix xxi Chapter 1: Getting Started... 1 Connecting to Your Database 1 Establishing OS Variables

More information

Oracle Database 12c: New Features for Administrators Ed 2 NEW

Oracle Database 12c: New Features for Administrators Ed 2 NEW Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c: New Features for Administrators Ed 2 NEW Duration: 5 Days What you will learn In the Oracle Database 12c:

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

Oracle - 1z Upgrade to Oracle Database 12c

Oracle - 1z Upgrade to Oracle Database 12c 1 Oracle - 1z0-060 Upgrade to Oracle Database 12c QUESTION: 1 Your multitenant container (CDB) contains two pluggable databases (PDB), HR_PDB and ACCOUNTS_PDB, both of which use the CDB tablespace. The

More information

Change Default Temporary Tablespace Usage Oracle 10g

Change Default Temporary Tablespace Usage Oracle 10g Change Default Temporary Tablespace Usage Oracle 10g alter tablespace temp add tempfile '+data' size 10G, thing: If 'Segment Space management' is set to MANUAL for the default TEMP tablespace, does this

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

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

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 12c: Advanced Administration. Question Question 90

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 12c: Advanced Administration. Question Question 90 Vendor: Oracle Exam Code: 1Z0-063 Exam Name: Oracle Database 12c: Advanced Administration Question 61 -- Question 90 Visit PassLeader and Download Full Version 1Z0-063 Exam Dumps QUESTION 61 You create

More information

DBAs can use Oracle Application Express? Why?

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

More information

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

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

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 - Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

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

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

More information