Oracle 10g R2 Data Guard. Neue Funktionalitäten

Size: px
Start display at page:

Download "Oracle 10g R2 Data Guard. Neue Funktionalitäten"

Transcription

1

2 Oracle 10g R2 Data Guard Neue Funktionalitäten

3 Claudia Hüffer Principal Sales Consultant Server Technologies Competence Center Nord ORACLE Deutschland GmbH

4 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

5 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

6 Einleitung einige Begriffe HA = high availability = bringing a system up after a failure DR = disaster recovery = prevent data loss HA DR Data Guard (vor allem physical standby) ist für DR, d.h. schützt die Daten gegen Verlust. Data Guard Funktionalitäten wie Switchover,... für HA Szenarien sind Bonus.

7 Disaster-Recovery Why? Whether by human error, hardware failure, electrical disruptions, or natural disaster, system failures simply WILL happen. The most effective way to lessen the impact and recover from them quickly is careful preparation--done today--so your recovery plan is in place when you'll need it. DON'T BE CAUGHT UNPREPARED

8 Data Guard Überblick Ausfallgründe Ungeplante Ausfallzeit Systemfehler Datenfehler & Desaster Applikations / Menschliche Fehler Stromausfall Failover zur Standby-DB Systemabsturz Datenkorruption 100% Datenschutz Flut, Feuer, usw. Löschen Delay beim von Log-Apply Flashback Tabellen Database (System-)Tabellen Geplante Ausfallzeit Routine Operationen System Wartung Produktiv-DB entlasten Aufgabenübernahmebernahme Schema-Anpassungen Backup, Reporting Hardware & Graceful Switchover O/S Upgrades

9 Data Guard Überblick Was ist Oracle Data Guard? Seit Oracle 9i neuer Name für Standby Datenbank Oracle s Disaster Recovery Lösung für Oracle DBs Feature der Oracle Database Enterprise Edition Automatisiert das Anlegen und den Betrieb einer oder mehrerer transaktionskonsistenter Kopien (Standby- DBs) der Produktiv-Instanz (Primary) Wenn die Produktiv-Instanz ausfällt, kann eine Standby- Datenbank aktiviert werden und die Rolle der Produktiv- Datenbank übernehmen

10 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

11 Architektur

12 Data Guard Architektur Einsatzgebiete? Physical Standby DR-Lösung mit HA-Funktionalitäten Reporting-Option Protection Modes Logical Standby Echt-Zeit-Reporting durch Real Time Apply durch Zusatz-Indizes und MVs gute Performance logische Kopie Vorschlag: Physical Standby für Failover/DR Logical Standby für Reporting, Upgrades, Tests, Entwicklung etc.

13 Data Guard Architektur Data Guard Manager - GUI

14 Data Guard Architektur Data Guard Manager - CLI

15 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

16 Data Guard New Features New Features Common to Redo Apply and SQL Apply New Features Specific to Redo Apply and Physical Standby Databases New Features Specific to SQL Apply and Logical Standby Databases

17 Common DG New Features Fast Start Failover (FSFO) Flashback Database across Data Guard switchovers (larger flashback window) Improvements with LGWR ASYNC Archiver-based redo transport optimizations Data Guard enhancements in Enterprise Manager

18 LGWR ASYNC improvement During asynchronous redo transmission, the network server (LNSn) process transmits redo data out of the online redo log files on the primary database and no longer interacts directly with the logwriter process. This change in behavior allows the logwriter process to write redo data to the current online redo log file and continue processing the next request without waiting for interprocess communication or network I/O to complete.

19 Archiver-based redo transport optimizations Intra-file parallel streaming using new max_connections attribute of log_archive_dest_n parameter More Archiver processes to archive redo logs log_archive_max_processes: max value increased from 10 to 30 Faster transfer of redo generated from batch loads, faster resolution of archive gaps in all protection modes

20 EM: Fine-grained Monitoring

21 Examples of Metrics Through EM Primary Data Guard Status Redo Generation Rate Last Redo Generated Time Standby Remaining Apply Time Lag Time Redo Not Available Redo Apply Rate Last Redo Applied Time Common Fast-Start Failover metrics Historical trend analyses available for various metrics!

22 Physical Standby Database New Features Easy conversion to reporting database (with read/write access) ALTER DATABASE RECOVER MANAGED STANDBY DATABASE FINISH FORCE for faster (immediate) failover RMAN automatically re-creates tempfiles after recovery Faster Redo Apply Failover (only, if not been opened read-only after last restart!)

23 Logical Standby Database New features Faster SQL Apply Failover Additional datatype support (IOT mit LOB und overflow) Automatic deletion of applied archived redo logs Optimized creation of logical standby database

24 Supported data/storage types CHAR, NCHAR VARCHAR2, VARCHAR,NVARCHAR2 NUMBER DATE TIMESTAMP,...WITH TIMEZONE,...WITH LOCAL TIMEZONE INTERVAL YEAR TO MONTH, INTERVAL DAY TO SECOND RAW CLOB, NCLOB, BLOB LONG, LONG RAW BINARY_FLOAT,BINARY_DOUBLE Heap-organized tables (partitioned and nonpartitioned) Index-organized tables (partitioned and nonpartitioned, including overflow segments) Cluster tables (including index clusters and heap clusters)

25 Unsupported data/storage types BFILE ROWID, UROWID User-defined types Collections (including VARRAYS and nested tables) XML type Encrypted columns Multimedia datatypes (including Spatial, Image, and Context) Logical standby databases do not support the segment compression storage type.

26 Automatic Archivelog Deletion in Logical Standby Automatically deletes archivelog files that have been applied Reader process periodically checks if archivelog files available for deletion, and if so, deletes them Metadata updated to reflect the current status Improves space management in logical standby Enable (default): execute dbms_logstdby.apply_set( LOG_AUTO_DELETE, TRUE ); Disable: execute dbms_logstdby.apply_set( LOG_AUTO_DELETE, FALSE ); DBA can query DBA_LOGMNR_PURGED_LOG view to see which logfiles will be deleted automatically in the future

27 Creation of logical standby database (1) Check data and storage type support Create physical standby database Stop recovery SQL> RECOVER MANAGED STANDBY DATABASE CANCEL; Execute dictionary build procedure on primary SQL> EXECUTE DBMS_LOGSTDBY.BUILD; Restart Recovery with additional option: SQL> ALTER DATABASE RECOVER TO LOGICAL STANDBY <dbname>; Create new password file

28 Creation of logical standby database (2) Startup mount the standby database SQL> STARTUP MOUNT Adjust log_archive_dest_n parameters Open resetlogs (only once, no dbnid) SQL> ALTER DATABASE OPEN RESETLOGS; Start apply SQL> ALTER DATABASE START LOGICAL STANDBY APPLY; Zero downtime, fewer steps

29 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

30 Fast-Start Failover Bei Ausfall der Primary findet ein automatisches Failover auf eine zuvor bestimmte Standby Datenbank statt erfordert kein manuelles Eingreifen Voraussetzungen sind eine bestehende Broker- Konfiguration, Maximum Availability Protection Mode und eingeschaltete Flashback Database Funktionalität auf beiden Seiten. Falls die alte Primary DB wieder verfügbar ist, nimmt der Broker diese automatisch als standby database in die Konfiguration auf

31

32 Fast Start Failover am Beispiel (1) Setzen des Protection Modes SQL> alter database set standby database to maximize availability; Einschalten flashback database SQL> alter database flashback on; Starten des Broker-Prozesses SQL> alter system set dg_broker_start=true scope=both;

33 Fast Start Failover am Beispiel (2) Definition der Broker-Konfiguration DGMGRL> create configuration airbus_fsfo as > primary database is elcaro02_fsfop > connect identifier is fsfop.world; DGMGRL> add database elcaro03_fsfos as > connect identifier is fsfos.world > maintained as physical ;

34 Fast Start Failover am Beispiel (3) Einstellen LGWR SYNC Transport Mode DGMGRL> edit database elcaro02_fsfop set property LogXptMode='SYNC'; DGMGRL> edit database elcaro03_fsfos set property LogXptMode='SYNC'; Einschalten der Broker-Konfiguration DGMGRL> enable configuration;

35 Fast Start Failover am Beispiel (4) Definition der Failover-Targets DGMGRL> edit database elcaro02_fsfop set property FastStartFailoverTarget='elcaro03_fsfos'; DGMGRL> edit database elcaro03_fsfos set property FastStartFailoverTarget='elcaro02_fsfop'; Starten des Observers DGMGRL> start observer

36 Fast Start Failover am Beispiel (5) Einstellen der Wartezeit DGMGRL> edit configuration set property FastStartFailoverThreshold='45'; Einschalten von Fast Start Failover DGMGRL> enable fast_start failover;

37 Fast Start Failover am Beispiel (6) DGMGRL> show configuration verbose Configuration Name: airbus_fsfo Enabled: YES Protection Mode: MaxAvailability Fast-Start Failover: ENABLED Databases: elcaro02_fsfop - Primary database elcaro03_fsfos - Physical standby database - Fast-Start Failover target Fast-Start Failover Threshold: 45 seconds Observer: elcaro03 Current status for "airbus_fsfo": SUCCESS

38 Fast Start Failover am Beispiel (7) Failover ausgelöst durch Crash der Primary tritt auf (kill 9 <pmon>, Thu May 26 13:39:41 MEST 2005) Observer-Konsole: 13:40:28.24 Thursday, May 26, 2005 Initiating fast-start failover to database "elcaro03_fsfos"... Performing failover NOW, please wait... Failover succeeded, new primary is "elcaro03_fsfos" 13:40:51.22 Thursday, May 26, 2005 ; Automatisches Failover in weniger als 1 Minute!

39 Fast Start Failover am Beispiel (8) Manueller Neustart der alten Primary SQL> startup ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes Database mounted. ORA-16649: database must be opened by Data Guard broker when Fast-Start Failover is enabled

40 Fast Start Failover am Beispiel (9) Broker nimmt alte Primary als standby db auf 13:44:28.54 Thursday, May 26, 2005 Initiating reinstatement for database "elcaro02_fsfop"... Reinstating database "elcaro02_fsfop", please wait... Operation requires shutdown of instance "FSFOP" on database "elcaro02_fsfop" Shutting down instance "FSFOP"... ORA-01109: database not open Database dismounted. ORACLE instance shut down.

41 Fast Start Failover am Beispiel (10) Fortsetzung... Operation requires startup of instance "FSFOP" on database "elcaro02_fsfop" Starting instance "FSFOP"... ORACLE instance started. Database mounted. Continuing to reinstate database "elcaro02_fsfop"... Reinstatement of database "elcaro02_fsfop" succeeded 13:45:43.61 Thursday, May 26, 2005

42 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

43 Physical standby as reporting database (read/write) A physical standby database can be activated as a primary database, opened read/write for reporting purposes, and then flashed back to a point in the past to be easily converted back to a physical standby database. At this point, Data Guard automatically synchronizes the standby database with the primary database. This allows the physical standby database to be utilized for reporting and read/write cloning activities. No logshipping during that time no disaster protection!! Second standby required

44 Physical Standby read/write (1) Definition eines Restore Point SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL; SQL> CREATE RESTORE POINT before_read_write GUARANTEE FLASHBACK DATABASE; Letzter Logswitch und Ausschalten vom Logshipping SQL> ALTER SYSTEM ARCHIVE LOG CURRENT; SQL> ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_2=DEFER;

45 Physical Standby read/write (2) Aktivieren der Standby Datenbank SQL> ALTER DATABASE ACTIVATE STANDBY DATABASE; SQL> STARTUP MOUNT FORCE; SQL> ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE; SQL> ALTER DATABASE OPEN; Durchführen der read/write Operationen für Reporting, Applikations-Tests,...

46 Physical Standby read/write (3) Zurücksetzen der Standby Datenbank SQL> STARTUP MOUNT FORCE; SQL> FLASHBACK DATABASE TO RESTORE POINT before_read_write; SQL> ALTER DATABASE CONVERT TO PHYSICAL STANDBY; SQL> STARTUP MOUNT FORCE; Starten des REDO-Apply SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT;

47 Physical Standby read/write (4) Einschalten des Logshipping SQL> ALTER SYSTEM SET LOG_ARCHIVE_DEST_2=ENABLE; SQL> ALTER SYSTEM ARCHIVE LOG CURRENT; Das entstandene Gap wird automatisch geschlossen.

48 Agenda Data Guard - Überblick Data Guard - Architektur Data Guard Features in Oracle Database 10g Release 2 Allgemein Fast Start Failover Read/Write-Nutzung der Physical Standby Database Zusammenfassung & Q/A

49 Zusammenfassung Data Guard ist DIE Desaster-Recovery Lösung von Oracle Zusätzliche Funktionen tragen zur Entlastung des Produktionssystem bei (Reporting, Backup,...) und erhöhen die Gesamtverfügbarkeit des Systems In 10gR2 weitere Performance-Vebesserungen beim Apply und LogTransport Erweitere Funktionalitäten im GUI Fast Start Failover (FSFO) = automatisches Failover Einfache Umwandlung der physical standby db für Read/write-Aktionen

50 Weiterführende Informationen Oracle Data Guard Produkt-Dokumentation Oracle Technet ( Zahlreiche White-Paper und Best-Practices- Paper Metalink Top Tech Docs Data Guard Tab all articles, find in page index Physical standby database master index page Logical standby database master index page

51 Q U E S T I O N S A N S W E R S

52

Oracle10g Data Guard: Back to the Future

Oracle10g Data Guard: Back to the Future Oracle10g Data Guard: Back to the Future Phil Grice Principal Software Engineer Oracle Corporation Page 1 www.decus.de 1 Agenda Oracle Data Guard a Quick Introduction Potential Data Guard Configurations

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

Oracle Database 12c: Data Guard Administration

Oracle Database 12c: Data Guard Administration Oracle University Contact Us: + 38516306373 Oracle Database 12c: Data Guard Administration Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration Ed 1 training teaches

More information

Oracle Database 12c: Dataguard Administration

Oracle Database 12c: Dataguard Administration Oracle Database 12c: Dataguard Administration Intended Audience:DBA/Support Engineer/Technical Consultant Pre-Requisites:Practical Knowledge on Database Administration/Linux Operating System Fundamentals

More information

Oracle 12c Dataguard Administration (32 Hours)

Oracle 12c Dataguard Administration (32 Hours) Oracle 12c Dataguard Administration (32 Hours) Course Topics Introduction to Oracle Data Guard What Is Oracle Data Guard? Types of Standby Databases Types of Data Guard Services Role Transitions: Switchover

More information

Oracle Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise. An Oracle White Paper November 2006

Oracle Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise. An Oracle White Paper November 2006 Oracle Data Guard in Oracle Database 10g Release 2 Business Continuity for the Enterprise An Oracle White Paper November 2006 Oracle Data Guard Business Continuity for the Enterprise Executive Overview...

More information

You'll even like your Data Guard more with Flashback

You'll even like your Data Guard more with Flashback You'll even like your Data Guard more with Flashback Hervé Schweitzer Mathias Zarick München, 26.01.2010 Baden Basel Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart

More information

Oracle Database 12c: Data Guard Administration LVC

Oracle Database 12c: Data Guard Administration LVC Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c: Data Guard Administration LVC Duration: 4 Days What you will learn This Oracle Database 12c: Data Guard Administration

More information

Data Guard: Setup and Administration. By Ashok Kapur Hawkeye Technology, Inc.

Data Guard: Setup and Administration. By Ashok Kapur Hawkeye Technology, Inc. Data Guard: Setup and Administration By Ashok Kapur. Agenda Introduction New Features Logical and Physical Standby Databases Setup Physical and Logical Standby Databases Administration including Switchover

More information

ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE

ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE Session id: 12766 ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE Inderpal S. Johal Principal Consultant AGENDA Standby Database enhancements Data Guard and its Architecture Background Process Pre-requisite

More information

for Backup & Recovery & Failover

for Backup & Recovery & Failover Oracle s DataGuard 2009 for Backup & Recovery & Failover 2009 IBM Corporation Spencer Krueger, IBM skrueger@us.ibm.com Oracle s Data Guard Basic Backup & Recovery Practices w/o Data Guard What is it? Configuration:

More information

CO Oracle Database 11g: Data Guard Administration

CO Oracle Database 11g: Data Guard Administration CO-52161 Oracle Database 11g: Data Guard Administration Summary Duration 4 Days Audience Database Administrators, Support Engineers and Technical Analysts Level Professional Technology Oracle Database

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

CO Oracle Database 12c: Data Guard Administration

CO Oracle Database 12c: Data Guard Administration CO-79232 Oracle Database 12c: Data Guard Administration Summary Duration 4 Days Audience Database Administrators, Support Engineers and Technical Analysts Level Professional Technology Oracle Database

More information

Read-only Transportable Tablespaces 11g <> 12c Bodo von Neuhaus

Read-only Transportable Tablespaces 11g <> 12c Bodo von Neuhaus Read-only Transportable Tablespaces 11g 12c Bodo von Neuhaus Leitender Systemberater ORACLE Deutschland B.V. & Co. KG Agenda 1 2 3 Transportable Tablespaces Allgemein Unterschiede 11g zu 12c Demo Agenda

More information

WebLogic Server für Dummies. Steffen Miller Principal Sales Consultant, Oracle Deutschland

WebLogic Server für Dummies. Steffen Miller Principal Sales Consultant, Oracle Deutschland WebLogic Server für Dummies Steffen Miller Principal Sales Consultant, Oracle Deutschland The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Oracle DataGuard 10gR2

Oracle DataGuard 10gR2 Oracle DataGuard 10gR2 PSOUG Education Hands-on Workshop Series Daniel A. Morgan damorgan@u.washington.edu 206-669-2949 We Do Not Practice: Slow Death by PowerPoint Discussion Oracle Data Guard Overview

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability MAA / Data Guard 10g Release 2 Setup Guide Creating a RAC Logical Standby for a RAC Primary Oracle Maximum Availability Architecture White Paper May 2006 Maximum Availability Architecture Oracle Best Practices

More information

Oracle 11g Data Guard Manual Failover Steps

Oracle 11g Data Guard Manual Failover Steps Oracle 11g Data Guard Manual Failover Steps Step by step approach to configure Oracle 11g Physical Standby Data Guard on CentOS 6.5 OS. In my case, Ingredients to simulate Physical Standby data guard SYSTEM

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Oracle Data Guard 12c Zero Data Loss at Any Distance Joseph Meeks Director of Product Management, Oracle Madhu Tumma Technology Director, J P Morgan Chase 2 Program Agenda Zero Data Loss Disaster Protection

More information

Oracle 1Z Oracle Database 12c: Data Guard Administration. Download Full version :

Oracle 1Z Oracle Database 12c: Data Guard Administration. Download Full version : Oracle 1Z0-066 Oracle Database 12c: Data Guard Administration Download Full version : https://killexams.com/pass4sure/exam-detail/1z0-066 QUESTION: 177 Which three statements are true about Global Sequences

More information

Oracle Database 11g: Data Guard Administration

Oracle Database 11g: Data Guard Administration D52161GC30 Edition 3.0 May 2010 D67578 Oracle Database 11g: Data Guard Administration Student Guide Authors Mark Fuller Donna K. Keesling Technical Contributors and Reviewers Todd Bao Harald van Breederode

More information

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management Introduction... 3 Database Migration to ASM

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

Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant

Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN

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

1Z Oracle Database 12c - Data Guard Administration Exam Summary Syllabus Questions

1Z Oracle Database 12c - Data Guard Administration Exam Summary Syllabus Questions 1Z0-066 Oracle Database 12c - Data Guard Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-066 Exam on Oracle Database 12c - Data Guard Administration... 2 Oracle 1Z0-066

More information

Configuring High Availability for the PMG DB

Configuring High Availability for the PMG DB This chapter describes the process of configuring high availability for the PMG DB. It provides the prerequisites and procedures required to configure and test the hot standby and cold standby for Cisco

More information

Maximum Availability Architecture. Oracle Best Practices for High Availability. Reducing Siebel Downtime with a Local Standby Database

Maximum Availability Architecture. Oracle Best Practices for High Availability. Reducing Siebel Downtime with a Local Standby Database Reducing Siebel Downtime with a Local Standby Database Oracle Maximum Availability Architecture White Paper November 2008 Maximum Availability Architecture Oracle Best Practices for High Availability Reducing

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

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

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

Data Guard Deep Dive

Data Guard Deep Dive Emre Baransel DBA, Employee ACE- Oracle Choosing the Protection Mode MODE REDO TRANSPORT ACTION WITH NO STANDBY DATABASE CONNECTION RISK OF DATA LOSS Maximum Protection Maximum Availability Maximum Performance

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

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

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

More information

ORACLE 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

Rishi Mohan Awasthi 1, Rishi Kumar 2, Raghav Garg 3 1,2,3 B.Tech, Computer Science & Engineering, IMS Engineering College, Ghaziabad

Rishi Mohan Awasthi 1, Rishi Kumar 2, Raghav Garg 3 1,2,3 B.Tech, Computer Science & Engineering, IMS Engineering College, Ghaziabad Data Handling using Oracle Data Guard by the Transfer of Log Sequence Rishi Mohan Awasthi 1, Rishi Kumar 2, Raghav Garg 3 1,2,3 B.Tech, Computer Science & Engineering, IMS Engineering College, Ghaziabad

More information

Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database

Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database Database Tables to Storage Bits: Data Protection Best Practices for Oracle Database Ashish Ray, Senior Director, Product Management, Oracle Gurmeet Goindi, Principal Product Manager, Oracle Gagan Singh,

More information

Oracle CDC 调研报告 林子雨 北京大学计算机系数据库实验室 2006 年 11 月 10 日

Oracle CDC 调研报告 林子雨 北京大学计算机系数据库实验室 2006 年 11 月 10 日 Oracle CDC 调研报告 林子雨 北京大学计算机系数据库实验室 2006 年 11 月 10 日 The Redo Log and a Capture Process Redo log Every Oracle database has a set of two or more redo log files. The redo log files for a database are collectively

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

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

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

Physical Standby Design concepts and practices. Dresdner-Cetelem Kreditbank, 1. Februar 2010, Seite 1

Physical Standby Design concepts and practices. Dresdner-Cetelem Kreditbank, 1. Februar 2010, Seite 1 Physical Standby Design concepts and practices Dresdner-Cetelem Kreditbank, 1. Februar 2010, Seite 1 1 Topics DataGuard architecture overview DataGuard Protection Modes and possible data loss DataGuard

More information

Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA

Mike Hughes Allstate Oracle Tech Lead, Oracle Performance DBA Implementing Oracle Maximum Availability Architecture at Allstate Insurance, Using Oracle 10g RAC, ASM, Oracle Data Guard, Flashback Database, RMAN and Oracle Grid Control November 12, 2007 Mike Hughes

More information

Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018

Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018 Deploying the Zero Data Loss Recovery Appliance in a Data Guard Configuration ORACLE WHITE PAPER MARCH 2018 Table of Contents Introduction 1 Overview 2 Prerequisites 2 Deploying Recovery Appliances with

More information

Oracle Database 12c: Backup and Recovery Workshop Ed 2 (ToD) On Demand

Oracle Database 12c: Backup and Recovery Workshop Ed 2 (ToD) On Demand Oracle Database 12c: Backup and Recovery Workshop Ed 2 (ToD) On Demand This is an original ORACLE Training on Demand online product. IHR NUTZEN Learn To: Develop appropriate backup and recovery procedures

More information

Oracle Database 10g: Data Guard Administration

Oracle Database 10g: Data Guard Administration Oracle Database 10g: Data Guard Administration Volume I Student Guide D17316GC20 Edition 2.0 October 2006 D47657 Author Donna K. Keesling Technical Contributors and Reviewers Christopher D. Andrews Harald

More information

Oracle Database 11g: SQL Fundamentals I

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

More information

ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK

ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK 14 November, 2017 ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK Document Filetype: PDF 538.91 KB 0 ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK Based on Ch14-Page15 of the Streams manual.

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

FLASHBACK RAC DATABASE TO RESTORE POINT Y. MORAN

FLASHBACK RAC DATABASE TO RESTORE POINT Y. MORAN I could not find any relevant documanet of RAC - Flashback on the net. So, I want to share my experiances with you. Check crs status. ora...t2.inst application ONLINE ONLINE rcnode2 Shutdown the database

More information

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set.

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set. Volume: 148 Questions Question No : 1 memory_target big integer 808M pga_aggregate_target big integer 0 sga_target big integer 0 SQL> SHOW PARAMETER SGA_MAX_SIZE NAME TYPE VALUE sga_max_size big integer

More information

DataGuard in Practice

DataGuard in Practice DataGuard in Practice Matthias Mann Unicredit Business Integrated Solutions S.C.p.A. 80538 Munich, Germany Keywords: Active DataGuard Reader Farm, Snapshot Standby, Protection Modes, Reporting, Summary

More information

Maximum Availability Architecture (MAA): Oracle E-Business Suite Release 12

Maximum Availability Architecture (MAA): Oracle E-Business Suite Release 12 1 2 Maximum Availability Architecture (MAA): E-Business Suite Release 12 Richard Exley High Availability Systems and Maximum Availability Architecture Group Server Technologies Metin

More information

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

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

More information

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

OTN Case Study: Amadeus Using Data Guard for Disaster Recovery & Rolling Upgrades

OTN Case Study: Amadeus Using Data Guard for Disaster Recovery & Rolling Upgrades OTN Case Study: Amadeus Using Data Guard for Disaster Recovery & Rolling Upgrades "We had already standardized on Oracle Data Guard for DR protection when we discovered additional ways to enhance overall

More information

The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring. Ashish Ray Group Product Manager Oracle Corporation

The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring. Ashish Ray Group Product Manager Oracle Corporation The Right Choice for DR: Data Guard, Stretch Clusters, or Remote Mirroring Ashish Ray Group Product Manager Oracle Corporation Causes of Downtime Unplanned Downtime Planned Downtime System Failures Data

More information

Creation of a physical Standby Database using OEM GC

Creation of a physical Standby Database using OEM GC Creation of a physical Standby Database using OEM GC Author: Rob Zoeteweij Date: July 19, 2010 http://oemgc.wordpress.com In this paper I will show how easy it is to create a physical Standby Database.

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

Oracle DB in der Oracle Cloud Überblick und Praxis

Oracle DB in der Oracle Cloud Überblick und Praxis Oracle DB in der Oracle Cloud Überblick und Praxis Negib Marhoul Systemberater Oracle Deutschland Agenda 1 2 3 Oracle Cloud Services - Überblick Bereitstellung einer Oracle DB in der Cloud Daten in die

More information

Oracle Database 12c 12c és 18c Data Guard újdonságok, Application Continuity tapasztalatok és demó. Papp Balázs - Webváltó

Oracle Database 12c 12c és 18c Data Guard újdonságok, Application Continuity tapasztalatok és demó. Papp Balázs - Webváltó Oracle Database 12c 12c és 18c Data Guard újdonságok, Application Continuity tapasztalatok és demó Papp Balázs - Webváltó Introduction Webváltó Kft. 2010-2018. 4. 4. 2 / 31 12.1 Transaction Guard and Application

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

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

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

Data Guard Configuration And Operation

Data Guard Configuration And Operation Configuration And Operation Author: G S Chapman Date: 18 th December 2007 Version: 1.3 Location of Document: i DOCUMENT HISTORY Version Date Changed By: Remarks 1.0 14/02/06 G S Chapman Original Version

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

FILE // ORACLE STANDBY LICENSING USERS MANUAL

FILE // ORACLE STANDBY LICENSING USERS MANUAL 07 December, 2017 FILE // ORACLE STANDBY LICENSING USERS MANUAL Document Filetype: PDF 498.63 KB 0 FILE // ORACLE STANDBY LICENSING USERS MANUAL Following Oracle License directives the above solution using

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

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

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

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

Eliminate Idle Redundancy with Oracle Active Data Guard

Eliminate Idle Redundancy with Oracle Active Data Guard Eliminate Idle Redundancy with Oracle Active Data Guard What is Oracle Data Guard Data Protection and Availability for the Oracle Primary Site Standby Site SYNC / ASYNC Primary Data Guard Physical or Logical

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

Oracle Data Guard B

Oracle Data Guard B Oracle Data Guard Concepts and Administration 10g Release 2 (10.2) B14239-01 June 2005 This guide describes Oracle Data Guard concepts and helps you implement and manage standby databases to ensure high

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

AUTOMATISIERUNG DER INFRASTRUKTUR

AUTOMATISIERUNG DER INFRASTRUKTUR AUTOMATISIERUNG DER INFRASTRUKTUR NÄCHSTER HALT: STORAGE! ULRICH HÖLSCHER SYSTEMS ENGINEER 1 ES GIBT EINE MENGE ARBEIT WIE GEHEN WIR ES AN? Cloud Management Systems Automatisierung, IT-Prozesse Cloud Readiness/Transformation

More information

Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks

Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks Implementing Oracle Database 10g0 Maximum Availability Architecture on Dell PowerEdge Servers and Dell/EMC Storage over Wide Area Networks The high cost of downtime has prompted many organizations to view

More information

Exam : Oracle 1Z0 043

Exam : Oracle 1Z0 043 Exam : Oracle 1Z0 043 Title : oracle database 10g:administration ii Update : Demo http://www.killtest.com 1. You have set the value of the NLS_TIMESTAMP_TZ_FORMAT parameter in the parameter file to YYYY

More information

Oracle Database Service High Availability with Data Guard?

Oracle Database Service High Availability with Data Guard? Oracle Database Service High Availability with Data Guard? Robert Bialek Senior Principal Consultant @RobertPBialek doag2017 Who Am I Senior Principal Consultant and Trainer at Trivadis GmbH in Munich.

More information

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand)

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Code: URL: D89616GC10 View Online This Oracle Database 11g: Backup and Recovery Workshop will teach you how to evaluate your

More information

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

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

More information

Oracle Data Guard Tips and Tricks Direct from Oracle Development

Oracle Data Guard Tips and Tricks Direct from Oracle Development 1 2 Oracle Data Guard Tips and Tricks Direct from Oracle Development Larry M. Carpenter Oracle Server Technologies Distinguished Product Manager John Smiley Amazon.com Senior Database

More information

Hardware and Software Engineered to Work Together

Hardware and Software Engineered to Work Together Hardware and Software Engineered to Work Together Exadata Database Machine für SAP - Software Safe Harbor Statement The following is intended to outline our general product direction. It is intended for

More information

ZDLRA implementation at CFM

ZDLRA implementation at CFM October 04, 2017 ZDLRA implementation at CFM Presented by Gabriel Nitulescu Project Leader CFM 2017 www.cfm.fr www.cfm.fr Who Are We? Fundamental research applied to financial markets CFM invests in Science,

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

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY;

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY; Using Physical Standby with transient Logical Standby (SQL Apply for near zero downtime upgrade of two node Oracle RAC database from 11.2.0.2 to 11.2.0.3 In the article you will have a look at an example

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

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

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 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 DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING

ORACLE DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING ORACLE DATA GUARD REAL WORLD EXAMPLES AND TROUBLESHOOTING AGENDA Brief overview Scenario High Availability Architecture Data Guard Until today Oracle 18c Best Practices for Creating /Monitoring/Troubleshoting

More information

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c: OCM Exam Preparation

More information

Author A.Kishore

Author A.Kishore Introduction Oracle Data Guard (known as Oracle Standby Database prior to Oracle9i), forms an extension to the Oracle RDBMS and provides organizations with high availability, data protection, and disaster

More information

ODAT-16 - ORACLE DATABASE 12C: DATA GUARD ADMINISTRATION

ODAT-16 - ORACLE DATABASE 12C: DATA GUARD ADMINISTRATION ODAT-16 - ORACLE DATABASE 12C: DATA GUARD ADMINISTRATION Categoria: Database INFORMAZIONI SUL CORSO Durata: Categoria: Qualifica Istruttore: Dedicato a: Produttore: 4,00000 Giorni Database Oracle Certified

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