Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2

Size: px
Start display at page:

Download "Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2"

Transcription

1 Flashback Database, Backup and Recovery in Oracle Database 12c Release 2

2 Select profile_details from oracle_community where name = Joerg Sobottka ; ORACLE DB SINCE 1991 IT Strategy OCP DBA (9i-12c) joerg.sobottka@robotron.ch Enterprise Manager Blog: Tuning High Availability Licensing Development SW Design

3 Topics Architecture Non-CDB New default architecture CDB with PDBs (Single-Tenant, Multi- Tenant) New Features for Flashback Database, Backup and Recovery (12.2 and a little bit 12.1) Detailed view into Flashback Database in a CDB-/PDB environment Do s and don ts Flashback PDB Detailed view into Backup and Recovery with RMAN in a CDB-/PDB environment Do s and don ts Backup and Recovery with RMAN Live demo

4 Architecture Non-CDB One database with typically one, sometimes more instances (RAC, Standby, ) and one system tablespace, one sysaux tablespace, typically one undo tablespace and one temp tablespace with one or more user schemas and therefore one or more user tablespaces with one or more files per tablespace, shared redo logs, flashback area, control files, archive redo logs, etc. managed as one database with one set of parameters and a central data dictionary But different applications normally don t share resources

5 Architecture Non-CDB

6 Architecture CDB/PDB - Singletenant Container-based database Available since 12.1, NEW: default architecture in 12.2 ONE Container (CDB$ROOT) with own data files (System, SysAux, Temp, Undo, possible but bad design: application tablespaces) Root container manages redo logs, flashback logs, memory, processes ONE pluggable database with System, SysAux, Temp Tablespaces as blueprint (PDB$SEED-Container) ONE pluggable user/application database with System, SysAux, Temp and Undo Tablespace (Application Container) Difference to 12.1: Every PDB now has its own UNDO (local undo)! Managed typically as ONE database Different dictionaries for CDB and PDB (metadata) Singletenant has 3 containers (CDB$ROOT, PDB$SEED, 1 Apps.PDB)

7 Architecture CDB/PDB - Multitenant Container-based database Available since 12.1 ONE Container (CDB$ROOT) with own data files (System, SysAux, Temp, Undo, possible but bad design: application tablespaces) Root container manages redo logs, flashback logs, memory, processes ONE pluggable database with System, SysAux, Temp Tablespaces as blueprint (PDB$SEED-Container) ONE OR MANY pluggable user/application databases with System, SysAux, Temp and Undo Tablespace (Application Containers) Difference to 12.1: Every PDB now has its own UNDO (local undo)! Managed typically as ONE OR MANY databases Different dictionaries for CDB and PDB (metadata) Multitenant has > 3 containers (CDB$ROOT, PDB$SEED, x Apps.PDB)

8 Architecture CDB/PDB Multitenant 12.1

9 Architecture CDB/PDB Multitenant 12.2

10 CDB/PDB States/File states Container based database Shutdown Close Nomount Mount Open Pluggable database Shutdown / alter pluggable database close Close Mount Open PDB state depends on CDB state (=> Controlfile owned by CDB) PDB MAY be opened together with CDB open or stays mounted If CDB is open, it s possible to put PDB in Mount or Open state Can t work with a PDB when CDB is closed or unmounted (nomount)

11 Flashback Database and RMAN outstanding New Features 12.1 Support for single-/multitenant databases: - Backup, restore and recover CDBs and PDBs as whole db - Point-in-time recovery of a CDB or PDB requires point-in-time recovery of the (shared) undo tablespace - Duplicate to standby databases as whole db - Flashback whole databases - Recover using backup sets from physical standby db Useful in a CDB environment: Point-in-time table recovery SYSBACKUP privilege for separation of duty (no view into data) Native sql interface enhancements Cross platform data transport using full and incremental backup sets

12 Flashback Database and RMAN outstanding New Features 12.2 Single PDB can be flashed back (rewind) to a point-in-time without influencing other PDBs or the CDB Syntax: Enhanced SET NEWNAME command for database and tablespace: set newname for database to '/oradata1/%b'; set newname for tablespace users to '/oradata2/%u'; Easier point-in-time recovery of a PDB due to local undo Point-in-time table recover to a new tablespace or new schema with REMAP_TABLESPACE and REMAP SCHEMA Point-in-time table recover checks for sufficient disk space Recover nonlogged data blocks from standby or primary database Recover UNTIL AVAILABLE REDO Restore and Recover: No need to offline files before restore/recover!

13 Flashback Database in 12.1 and 12.2 Prerequisites: - local undo must be enabled (default in 12.2, owner CDB and each PDB) - Fast recovery area must be configured (owner CDB) - Flashback logging enabled: alter database flashback on (owner CDB) - Archive logging enabled (owner CDB) - Connect as SYSDBA or SYSBACKUP - Doesn t work with Nologging, direct-path inserts, shrunken data files, Flashback a CDB with ALL included PDBs Connect to CDB Shutdown immediate Startup mount Flashback database to <timestamp/scn/restore Point/ >; Alter database open resetlogs; Useful for test environments, upgrades, automatic build systems,

14 Flashback Database in 12.2 Flashback a PDB without influencing CDB Connect to the CDB Alter session set container=pdb1r2; Create restore point PDB1R2_RP1 guarantee flashback database; Make a fault at PDB1R2: Truncate table mytab; Connect to the CDB Alter pluggable database PDB1R2 close; #PDB must be in mount state Flashback pluggable database PDB1R2 to restore point PDB1R2_RP1; # or to scn/before timestamp/ Alter pluggable database PDB1R2 open resetlogs; #can not make an open reset logs (because the owner of redo logs is the CDB), but does something=>alert.log Later on: drop restore point PDB1R1_RP1;

15 Do s and Dont s Flashback PDB Check connections TWICE! Connect could be to CDB or any PDB! Avoid to flashback single PDBs to timestamp or SCN (not guaranteed) Better: use predefined guaranteed restore points with DIFFERENT NAMES for different targets (each PDB/CDB) Namespace for restore points is each PDB/CDB Attention: If a PDB restore point is not found, it is interpreted as a CDB restore point! Helpful: - Do all at CDB$ROOT using FOR PLUGGABLE DATABASE syntax, e.g. create restore point MyRP FOR PLUGGABLE DATABASE PDB1R2; Use ALTER SESSION SET CONTAINER clause to switch to PDB, if needed. - RMAN: LIST RESTORE POINT ALL; don t show PDB information - SELECT * FROM V$RESTORE_POINT; does show PDB information

16 Backup with RMAN in a CDB/PDB environment Backup and Restore of CDB with PDBs, only CDB or PDBs without CDB is possible Backing up a PDB is nearly the same as with Non-CDB databases If a backup of a PDB is done for later use, don t forget to backup controlfile and archive logs from CDB$ROOT Syntax/Execution is depending on the connection to a container Not all RMAN syntax is working everywhere or works different: - CDB$ROOT> backup database plus archivelog; #CDB, PDBs, arch. logs - CDB$ROOT> backup database root; #CDB$ROOT only - CDB$ROOT> backup pluggable database pdb1r2; #PDB - CDB$ROOT> backup pluggable database pdb1r2 plus archivelog; #PDB/logs - PDB1R2> backup database plus archivelog; # no backup of archivelog, no error is thrown - PDB1R2> backup datafile 27; #does not make an autobackup controlfile! - CDB$ROOT> backup datafile 27; #does make an autobackup controlfile!

17 Restore and Recover with RMAN in a CDB/PDB environment (1) Remember all time: Owner of control files, spfile, flashback logs, online and archive redo logs is only CDB$ROOT Some tablespaces do exist very often (System, Sysaux, Temp, Undo), but in different containers (CDB$ROOT, PDB$SEED, user PDBs) Same syntax, different output example: REPORT SCHEMA - reports connected to a PDB only Data-/Tempfiles owned by the PDB - reports connected to a CDB all Data-/Tempfiles for the CDB$ROOT and all PDBs (including PDB$SEED) Same syntax, not understandable error: ALTER DATABASE DATAFILE 25 OFFLINE; - works in the right PDB container - CDB$ROOT: ORA-01516: nonexistent file "25" in the current container => Set container for a session is in RMAN not allowed The solution is

18 Restore and Recover with RMAN in a CDB/PDB environment (2) PDB: rman target=sys/oracle@pdb1r2 rman> run { alter database datafile 25 offline; restore datafile 25; recover datafile 25; alter database datafile 25 online; } CDB: rman target=sys/oracle@orcl12c rman> run { alter pluggable database pdb1r2 close; restore datafile 25; recover datafile 25; alter pluggable database pdb1r2 open; }

19 Restore and Recover with RMAN in a CDB/PDB environment (4) CDB: rman target=sys/oracle@orcl12c rman> run { sql 'PDB1R2' 'alter database datafile 25 offline'; restore datafile 25; recover datafile 25; sql 'PDB1R2' 'alter database datafile 25 online'; } RMAN does not allow to reconnect RMAN does not allow to set datafiles owned by a PDB offline from CDB with integrated SQL syntax RMAN can run SQL(!) statements using the old SQL keyword in a specified container environment

20 Restore and Recover with RMAN in a CDB/PDB environment (5) Where will this work? CDB? PDB1R2? PDB2R2?... PDB145R2? rman> run { alter tablespace users offline; restore tablespace users; recover tablespace users; alter tablespace users online; } CDB should not have a users tablespace (but it is possible) Connected to every PDB where a datafile/users tablespace exists Ensure: Which PDB is affected by an error and connect to this! Restore and recover a PDB-tablespace with tablespace syntax connected to the CDB is not implemented => restore/recover the whole PDB

21 Restore and Recover with RMAN in a CDB/PDB environment (6) Data Recovery Advisor Diagnosis of failures Generates scripts to repair failures Easy to use for detected failures: List failure; advise failure; repair failure; Per default does not show all failures at all time (only already detected and only with high or critical priorities) Works connected to CDB only Does work in a Non-CDB or single-tenant environment very well Is not aware of any SLAs we do have on consolidated db with high number of PDBs Can restore and recover to original location (no relocation of data files) Target DRA: Have EVERYTHING online with as LESS I/O as possible

22 Do s and Dont s RMAN in a CDB/PDB environment (1) More chances to do it wrong and to lose data or time if you don t know exactly, where you are and what you do than in a non-cdb environment For backups of single PDBs don t forget to backup the archivelogs separately, if you are connected to a PDB New RMAN session needed as PDB connection does not backup archivelogs Autobackup of controlfiles and spfile are done only after backup from CDB$ROOT level, not, if you are connected to a PDB Don t use delete input while backing up archivelogs, especially when using flashback database or with a high number of PDBs (as it is more likely than before that they may be used keep them e.g. at least 2 or 3 days on disk) With a rising number of PDBs, backups are getting huge in size. Think about incremental backup strategies or backup on PDB level

23 Do s and Dont s RMAN in a CDB/PDB environment (2) Use an external RMAN catalog! - It s cost free (no additional license needed, as long as the database is under support: - Don t loose backup metadata while creating, moving, dropping pluggable databases - Allows to report schema as of timestamp - Helps storing scripts for backup and recovery Do not drop a PDB from a container unless a new backup was taken from the new CDB where the database has been plugged in (CDB$ROOT, PDB and archive logs) and use backup controlfile to trace before and after structural changes Reduce the risk of losing data by doing all, that can be done, from the CDB$ROOT container Create predefined scripts and use them whenever possible

24 Do s and Dont s RMAN in a CDB/PDB environment (3) Ugly: Startup of a CDB may work (Opens the database without any error message) but one or more PDB can remain in mount status Consult (monitor) the ALERT.LOG often all known errors with data files, control files, etc. are reported in there (even if the CDB opens normally) Make yourself comfortable with all the new CDB and PDB views - OPEN_MODE from v$containers or v$pdbs shows mount/open status - STATUS from dba_pdbs is for Normal/Plugin/Convertion/upgrade states Trust the Data Recovery Advisor LESS than in a Non-CDB or Single PDB environment it tries its best, but it doesn t know your SLAs and it may does not know all errors BUT: use the Data Recovery Advisor with REPAIR FAILURE PREVIEW to see in combination with the ALERT.LOG, what really happened, to challenge your restore and recover strategy and to learn something about the syntax but be aware, that errors marked low are not shown by default and there may be some errors not found yet

25 Do s and Dont s RMAN in a CDB/PDB environment (4) restore tablespace system can be run on the CDB$ROOT, PDB$SEED and all user PDB containers. Use data file names/data file numbers instead of tablespaces or at least check your connections TWICE If you need to restore/recover the CDB oracle recommends to restore and recover ALL included PDBs because of possible metadata inconsistencies Train yourself regularly, e.g. create an environment, make and write down CONCEPTS and REVIEW them often: More necessary than before, to write down backup AND restore and recover concepts separately for every (pluggable) database or at least for groups of (pluggable) database with same SLA levels: WHAT? WHEN? HOW OFTEN? WHERE FROM? WHERE TO? KEEP HOW LONG? HOW TO RESTORE? HOW TO RECOVER? WHICH SLA? WHICH USERS? Use environment to exercise test scenarios again and again for backup and recovery from time to time (also with different database versions)

26 Do s and Dont s RMAN in a CDB/PDB environment (5) For dataguard environments: - Do backups from standby and restore and recover the primary to move the backup workload from your primary to your standby system - Be aware, that with 12.2 the standby system does NOT need to have all PDBs included running in your production (as it was with 12.1) - Nevertheless, ALL archive logs are shipped (and used for recovery) to the standby database system (so you can backup them there) With active data guard (EE extra cost option), e.g. block restore and recovery between primary and standby database are done without the need of interaction with a database administrator

27 Syntax Examples Live Demos

28 Your feelings: Still confused, but on a higher level? Start with your concepts!

29 weitere Informationsmöglichkeiten Über den Wolken Grenzenlose Freiheit mit purem Metall? Florian Barth, Katharina Büchse :00 Uhr, Raum Prag Schwerpunkt: Infrastruktur ODA X6M & DBVisit, braucht es mehr? Sven Illert :00 Uhr, Raum Prag Schwerpunkt: Infrastruktur Workshop: Get in Touch with Oracle Bare Metal Cloud Services (BMCS) Katharina Büchse, Florian Barth, Dr. Ingo Laue (Oracle) :00-16:00 Uhr :00-12:00 und 14:00-16:00 Uhr :00-12:00 und 14:00-16:00 Uhr Raum: Foyer Oslo-Istanbul Schwerpunkt: Community-Aktivitäten Flashback Database, Backup und Recovery in Oracle DB 12.2 Jörg Sobottka :00 Uhr, Raum Shanghai Schwerpunkt: Datenbank Oracle Database Appliance What's New? Marco Friebe :00 Uhr, Raum Budapest Schwerpunkt: Infrastruktur AWR und ASH für die Standard Edition Marco Mischke :00 Uhr, Raum Shanghai Schwerpunkt: Datenbank INFORMATIONEN am Robotron-Stand 226 auf Ebene 2 und auf

30 Thank you for your attention!

Oracle Database 12c Release 2

Oracle Database 12c Release 2 Flashback Database, Backup and Recovery in Oracle Database 12c Release 2 DOAG Regionaltreffen 25.01.2018, Jörg Sobottka, Karlsruhe Zahlen und Fakten Robotron Datenbank-Software GmbH Gründungsjahr 1990

More information

DOAG Conference Edition. Marco Mischke, Experts for database solutions.

DOAG Conference Edition. Marco Mischke, Experts for database solutions. DOAG Conference 2017 AWR and ASH for Standard Edition Marco Mischke, 22.11.2017 About me Oracle DBA since 2000 and Version 7.3.4 Certified Professional 10g, 11g RAC / Cluster Certified Expert 10g, 11g,

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

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

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

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

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

Oracle Database Server 12c Pros and Cons

Oracle Database Server 12c Pros and Cons Oracle Database Server 12c Pros and Cons Hans Forbrich Forbrich Consulting Ltd Based in Alberta, Canada Fact Oracle DB 12c is the largest architectural change since Oracle8i Fact Oracle documentation

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

Disaster Recovery: Restore Database from One Server to another Server when Different Location

Disaster Recovery: Restore Database from One Server to another Server when Different Location Disaster Recovery: Restore Database from One Server to another Server when Different Location Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com Step

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

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

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

More information

Oracle Database 12c R2: New Features for 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

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

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Support Engineer Technical Administrator Technical Consultant Related Training Required Prerequisites Knowledge of Oracle Database 12c Knowledge

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

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

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

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

How To Apply Archive Logs Manually In Standby Database Using Rman

How To Apply Archive Logs Manually In Standby Database Using Rman How To Apply Archive Logs Manually In Standby Database Using Rman Using Rman Active Duplicate to create a Standby from a standby. Posted by RMAN_. Let's create some Archivelogs in Primary Database so that

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

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Oracle University Contact Us: 0845 777 7711 Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Duration: 5 Days What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach

More information

Oracle Database 11g: Administration Workshop I DBA Release 2

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

More information

Recovering Oracle Databases

Recovering Oracle Databases CHAPTER 20 Recovering Oracle Databases In this chapter you will learn how to Recover from loss of a controlfile Recover from loss of a redo log file Recover from loss of a system-critical datafile Recover

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

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

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

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

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

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

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

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

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

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

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 R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: +386 1 588 88 13 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)?

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? Volume: 176 Questions Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? A. A DBA can check specific tables with the DMU B. The database

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

RMOUG Training Days 2018

RMOUG Training Days 2018 RMOUG Training Days 2018 Pini Dibask Product Manager for Database Tools February 22 nd, 2018 Winning Performance Challenges in Oracle Multitenant About the Speaker Pini Dibask, Product Manager for Database

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

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

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

More information

Oracle 12C Administration Course Content:

Oracle 12C Administration Course Content: Oracle 12C Administration Course Content: Enterprise Manager and Other Tools Enterprise Manager (EM) Cloud Control home page Enterprise Manager Express home page versus Enterprise Manager Database Control

More information

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

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

More information

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

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

More information

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

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II What you will learn This Oracle Database 11g: Administration Workshop II Release 2 training takes the database

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

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

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II CONTEÚDO PROGRAMÁTICO Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting

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

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

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

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 - Oracle Database 12c: Backup and Recovery Workshop Ed 2

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Code: Lengt h: URL: 12cDB-BR 5 days View Online This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your

More information

Oracle Database 11g Administration Workshop II

Oracle Database 11g Administration Workshop II Oracle Database 11g Administration Workshop II Course information Days : 5 Total lessons : 20 Suggested Prerequisites : Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: Administration Workshop

More information

Oracle Database 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

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

"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

Steps how to duplicate a database to a new machine. Version 10gR2

Steps how to duplicate a database to a new machine. Version 10gR2 Steps how to duplicate a database to a new machine. Version 10gR2 First take a fresh backup of the target database set the ORACLE_* variables If the databse is running in noarchivelog mode, shut it down

More information

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK 31 October, 2017 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK Document Filetype: PDF 111.76 KB 0 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK You took this cold RMAN backup from a development database, your developpers

More information

CO Oracle Database 12c: Backup and Recovery Workshop

CO Oracle Database 12c: Backup and Recovery Workshop CO-78850 Oracle Database 12c: Backup and Recovery Workshop Summary Duration 5 Days Audience Data Warehouse Administrators, Database Administrators, Support Engineers, Technical Administrators, Technical

More information

Multitenant Databases. Arup Nanda Longtime Oracle DBA

Multitenant Databases. Arup Nanda Longtime Oracle DBA Multitenant Databases Arup Nanda Longtime Oracle DBA One App: One DB User SIEBEL User SIEBEL User SIEBEL 2 Database User Issue Application 1 Application 2 Application 3 Application 1 Application 2 Application

More information

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

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

More information

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

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

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

More information

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ]

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] s@lm@n Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] Topic break down Topic No. of Questions Topic 1: Pool 1 112 Topic 2: Pool 2 100 Topic

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

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

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

"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 1Z Oracle Database 12c - Installation and Administration. Download Full version :

Oracle 1Z Oracle Database 12c - Installation and Administration. Download Full version : Oracle 1Z0-062 Oracle Database 12c - Installation and Administration Download Full version : https://killexams.com/pass4sure/exam-detail/1z0-062 QUESTION: 42 In your database, you want to ensure that idle

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

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

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

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which

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

D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2

D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2 D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2 Czas trwania: Czas trwania: 5 dni / 40 godz. Cena rynkowa: 7 450,00 zł Cena promocyjna: Zadzwoń - 801 30 30 30 Szkolenie autoryzowane:

More information

Oracle Database 12c: New Features For Administrators

Oracle Database 12c: New Features For Administrators This is a multi-volume textbook kit that covers the major new features of the Oracle 12c database of interest to database and other enterprise administrators. General Description The single most important

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

Oracle12c Release 1 & 2 New Features for Administrators (5 Days)

Oracle12c Release 1 & 2 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 & 2 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

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g CONNECT TO TARGET DATABASE USING RMAN $ export ORACLE_SID=crms $ rlrman target / Recovery Manager: Release 11.2.0.1.0 - Production on Sat Jan 31 10:13:56 2015 Copyright (c) 1982, 2009, Oracle and/or its

More information

RMAN Backups and Reporting

RMAN Backups and Reporting Chapter 5 RMAN Backups and Reporting Chapter 4 provided the details on configuring RMAN and using specialized features to control the behavior of RMAN. After you consider which features you require, you

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

Oracle 1Z0-053 Exam Questions & Answers

Oracle 1Z0-053 Exam Questions & Answers Oracle 1Z0-053 Exam Questions & Answers Number: 1Z0-053 Passing Score: 660 Time Limit: 120 min File Version: 38.8 http://www.gratisexam.com/ Oracle 1Z0-053 Exam Questions & Answers Exam Name: Oracle Database

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

DOC ORACLE STANDBY USER MANUAL ARCHIVE

DOC ORACLE STANDBY USER MANUAL ARCHIVE 19 December, 2017 DOC ORACLE STANDBY USER MANUAL ARCHIVE Document Filetype: PDF 254.06 KB 0 DOC ORACLE STANDBY USER MANUAL ARCHIVE ALTER DATABASE CREATE STANDBY CONTROLFILE. 3 How to configure Standby

More information

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop ITSW 2037 Course Syllabus 1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop 2. Number of Clock Hours: 60 hours 3. Course Description: Students will gain an understanding of Oracle database

More information

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover??

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? If it is multiplexed then replace the lost one with the available one else

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

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

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases?

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? Volume: 92 Questions Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? A. DB_UNIQUE_NAME must be specified differently for each pluggable database within

More information

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Contents Managing Database Storage Structures Using Enterprise Manager Database Express... 1 Overview... 2 Configuring

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

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

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

Oracle Database: SQL and PL/SQL Fundamentals

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

More information

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