Data Guard. Author & Presenter: Nassyam Basha Date: 27-FEB-2015

Size: px
Start display at page:

Download "Data Guard. Author & Presenter: Nassyam Basha Date: 27-FEB-2015"

Transcription

1 Under The Hood of Active Data Guard Author & Presenter: Nassyam Basha Date: 27-FEB-2015

2 Nassyam Bashaa Post Graduation in computers from University of Madras Oracle Database Pythian Frequent OTN contributor (CKPT) /MOSC certified GURU Co-Author of Oracle 11gR2 Data Guard administration beginners Guide Blogger Author of OTN Articles 11g Oracle Certified Master Co-Founder /nassyambasha Pythian

3 Under The Hood of Active Data Guard Data Guard vs. Active Dataa Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby Applications & ADG Pythian

4 Data Guard vs. Active Dataa Guard Data Guard Resources are locked Stale results by opening standby in read-only after MRP termination. Active Data Guard Additional License for the usage of Activ ve Data Guard from 11g Improves performance of Primary by offloading queries, reporting with real-time data Complex queries, Sorting, Web-based access while redo apply Read-Only applications Best suits for Enquiries, Tracking statuss (No DML/DDL) Unlocks the resources (System, Storage.) Pythian

5 Active Data Guard Oracle Net PRIMARY DATABASE LGWR NSS/ NSA RFS STANDBY DATABASE ORL s SRL s ARC H ARC H 5

6 Data Guard Real Time apply is applicable No Real-Time Queries, Database will be in Mount Status Pythian

7 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

8 Set up of ADG Compatible= Ensure Real-Time apply is On. Uncomplicated procedure Broker manages everything to bounce MRP Standby can be RAC or non-rac and Broker is supported. 8

9 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

10 Real Time Query Here you go 10

11 Real-Time Query Validation Monitoring data apply on standby database to track real-time apply 11

12 Real-Time Query Test No scope for the stale data 12

13 Guarantee Data Currency SESSION_MAX_DATA_DELAY parameter applicable only for non-administrator users Session specific apply lag tolerance If session_max_data_delay set to None, query results regardless of the apply lag with primary database. Standby SQL> connect Connected. SQL> alter session set standby_max_data_delay= =30; Session altered. DGMGRL> edit database india set state='apply-o OFF'; Succeeded. DGMGRL> Primary SQL> set time on 07:59:01 SQL> insert into adg_table values (150, 'PUNE'); 1 row created. 07:59:14 SQL> commit; Commit complete. 13

14 Guarantee Data Currency Standby SQL> select count(*) from adg_table; select count(*) from adg_table * ERROR at line 1: ORA-00604: error occurred at recursive SQL level 2 ORA-03172: STANDBY_MAX_DATA_DELAY of 30 seconds exceeded 14

15 Guarantee Data Currency SQL> select name,value from v$dataguard_stats; NAME VALUE transport lag :00:00 apply lag :14:55 apply finish time estimated startup time 13 To avoid stale data for any specific triggers with parameter standby_max_delay works. CREATE OR REPLACE TRIGGER max_data_delay AFTER LOGON ON database BEGIN IF (SYS_CONTEXT( USERENV, DATABASE_ROLE ) in ( PHYSICAL STANDBY ) and SYS_CONTEXT( USERENV, SESSION_USER )= C## #NASSYAM ) THEN execute immediate ALTER SESSION SET STANDBY_MAX_DATA_DELAY=5; END IF; END; / 15

16 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

17 Gap Detection and Resolution Missing redo stream with full log file or into parts Network Outage Deletion or Missing of log files before they applied on standby Bad configuration Can be FRA, Corruption, Data files issue Consider reviewing the alert log and views v$archived_log, v$archive_gap, v$archive_dest, v$database, v$dataguard_status, v$managed_standby, v$log_history Resolution: Resolution not required for Good configuration, Oracle take cares in resolving GAP by RFS FAL parameter 17

18 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

19 Block Change Tracking BCT can quickly identifies the blocks changes since last backup. BCT on Standby supported from 11.2 Many bugs with 11.2 < 11gR2 CTWR cannot write in BCT when recovery in progress. 19

20 Block Change Tracking BCT works only on Incremental backups 20

21 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

22 Automatic Block Repair Automatic Block repair feature of ADG from 11g Media recovery works in 2-way Real-Time query should be working. Automatically repairs physical corruption. Increases availability and maintaining data protection all time. PRIMARY DATABASE STANDBY DATABASE 22

23 Automatic Block Repair Without ADG SQL> select count(*) from c##nassyam.adg_table; select count(*) from c##nassyam.adg_table * ERROR at line 1: ORA-01578: ORACLE data block corrupted (file # 6, block # 354) ORA-01110: data file 6: '/u02/app/oracle/oradata/mcdb/users01.dbf' With the power of ADG SQL> select count(*) from C##NASSYAM.ADG_TABLE; COUNT(*) Reading datafile '/u02/app/oracle/oradata/mcdb/users01.dbf' for corruption at rdba: 0x (file 6, block 356) Reread (file 6, block 356) found same corrupt data (no o logical check) Automatic block media recovery requested for (file# 6,, block# 356) Sat Feb 21 22:24: Automatic block media recovery successful for (file# 6, block# 356) Sat Feb 21 22:24: Automatic block media recovery successful for (file# 6, block# 355) Sat Feb 21 22:24: Automatic block media recovery successful for (file# 6, block# 355) Automatic block media recovery successful for (file# 6, block# 356) 23

24 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

25 Tuning Reports: Statspack With ADG we can measure performance by interpreting Tuning tools Statspack on standby is available from 11gR1 Before using Statspack, must have schema and Statspack related objects, If not available they can created using spcreate.sql Statspack Installation SQL> alter session set "_oracle_script"= =true; Standby Statspack Installation, creates STDBYPERF user for Standby. Add additional Standby from STDBYPERF user Creating Snapshot Manually (exec statspack_<db_unique_name>_<instance_name>.snap) SQL> exec statspack_india_drmcdb.snap Generate Statspack report(test case) from STDBYPERF user SQL> exec statspack_india_drmcdb.snap 25

26 Tuning Reports: Sample Statspack Report ADG allows more scope to review performance of standby database also. D:\All Oracle\ unity & User Group 26

27 Tuning Reports: ASH Report ASH report is very useful to track active sessions and also Historical. Ability to generate reports same as Primary with HTML and Text based. SQL> select db_unique_name,database_role from v$database; DB_UNIQUE_NAME DATABASE_ROLE india PHYSICAL STANDBY Current Instance ~~~~~~~~~~~~~~~~ DB Id DB Name Inst Num Instance MCDB 1 drmcdb... You are running ASH report on a Standby database. To generate the report over data sampled on the Primary database, enter 'P'. Defaults to 'S' - data sampled in the Standby database. Enter value for stdbyflag: S Using Primary (P) or Standby (S): S 27

28 Tuning Reports: ASH Report ASH report is very useful to track active sessions and also Historical. 28

29 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby & Applications Applications & ADG Pythian

30 Exporting Data from Standby Creates only master table at Primary database Disk reads, Memory consumption of processes from standby database. SQL>!mkdir -p /home/oracle/working/nassyam/ SQL> create or replace directory exp_adg as '/home/oracle/working/nassyam'; Directory created. SQL> grant read,write,execute on directory exp_adg to public; Grant succeeded. SQL> create public database link exp_adg connect to system identified by oracle using 'india'; Database link created. SQL> 30

31 Exporting Data from Standby -bash-3.2$ expdp system/oracle directory=exp_adg dumpfile=exp_full.dmp logfile=exp_full.log schemas= c##nassyam network_link=exp_adg Export: Release Production on Fri Feb 20 18:03: Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 12c Enterprise Edition Release bit Production With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options WARNING: Oracle Data Pump operations are not typically needed when connected to the root or seed of a container database. Starting "SYSTEM"."SYS_EXPORT_SCHEMA_01": system/*** ****** directory=exp_adg dumpfile=exp_full.dmp logfile=exp_full.log schemas= network_link=exp_adg Estimate in progress using BLOCKS method... Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATAA Total estimation using BLOCKS method: MB Processing object type SCHEMA_EXPORT/USER Processing object type SCHEMA_EXPORT/SYSTEM_GRANT Processing object type SCHEMA_EXPORT/ROLE_GRANT Processing object type SCHEMA_EXPORT/DEFAULT_ROLE Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA Processing object type SCHEMA_EXPORT/TABLE/TABLE Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS Processing object type SCHEMA_EXPORT/STATISTICS/MARKER.. exported "C##NASSYAM"."TEST_UPDATE" MB rows.. exported "C##NASSYAM"."ADG_TABLE" KB 3 rows Master table "SYSTEM"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded ****************************************************************************** Dump file set for SYSTEM.SYS_EXPORT_SCHEMA_01 is: /home/oracle/working/nassyam/exp_full.dmp Job "SYSTEM"."SYS_EXPORT_SCHEMA_01" successfully co ompleted at Fri Feb 20 18:05: elapsed 0 00:01:57 31

32 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby Applications & ADG Pythian

33 DML s on Standby & Applications Active Data Guard feature from Key Parameter: TEMP_UNDO_ENABLED(Dynamic) Compatible parameter should be DDL s should be issued from Primary Transactions splits, Temporary objects will be used temporary undo and normal objects in Permanent undo. SQL> create global temporary table ADG_GTT on commit preserve rows as select * from testobj; Table created. DDL only on Primary SQL> SQL> conn c##nassyam/oracle Connected. SQL> select count(*) from adg_gtt; COUNT(*) SQL> insert into ADG_GTT select * from testobj; DML on Standby rows created. SQL> select count(*) from adg_gtt; New rows on Standby COUNT(*)

34 DML s on Standby & Applications 12 New feature SQL> set autotrace traceonly statistics; SQL> insert into ADG_GTT select * from testobj; rows created. Statistics recursive calls 8499 db block gets 3542 consistent gets 1534 physical reads 0 redo size 854 bytes sent via SQL*Net to client 841 bytes received via SQL*Net from client 3 SQL*Net roundtrips to/from client 35 sorts (memory) 0 sorts (disk) rows processed SQL> select count(*) from adg_gtt; COUNT(*)

35 Under The Hood of Active Data Guard Data Guard vs. Active Data Guard Setup of ADG Real-Time Query Gap Detection and Resolution BCT & Fast Incremental Backups Automatic Block Repair Statspack & ASH Exporting Data from ADG DML s on Standby Applications & ADG Pythian

36 Applications & ADG Key role is compatibility of applications Peoplesoft EBS Nvision reports are supported to use and run on ADG Nvisions are mostly select queries(ps_ledger, PS_LEDGER_BUDG) Reports can run from modules FIN, HR, or EPM(DWH). Database Links to access primary system for DML/DDL using triggers Top Links(FMW) Oracle BI( ) SAP does not work with ADG with ADG 36

37 Finally These all are with single License 37

38 Thank you and 38

Active Data Guard Hands On Lab. Larry M. Carpenter Distinguished Product Manager

Active Data Guard Hands On Lab. Larry M. Carpenter Distinguished Product Manager Active Data Guard Hands On Lab Larry M. Carpenter Distinguished Product Manager Page 2 of 64 Active Data Guard Hands On Lab Oracle Database 11g Release 2 Maximum Availability Architecture (MAA) Oracle

More information

Data Guard: Additional Benefits apart from DR

Data Guard: Additional Benefits apart from DR Data Guard: Additional Benefits apart from DR Uwe Hesse Senior Principal Instructor OU Oracle Certified Master http://uhesse.com/about What is Active Data Guard? Option for Oracle Database 11g Enterprise

More information

Internals of Active Dataguard. Saibabu Devabhaktuni

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

More information

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

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

More information

ORACLE 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

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

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

More information

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

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

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

ORACLE DBA TRAINING IN BANGALORE

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

More information

Oracle Active Data Guard - Overview

Oracle Active Data Guard - Overview Oracle Active Data Guard - Overview Greg Walters Sr. Technology Sales Consultant INOUG April 28, 2011 Copyright 2011, Oracle Corporation and/or its affiliates Agenda Oracle Database

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

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

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

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any

More information

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

ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING

ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING Alejandro Vargas Oracle Support Israel Principal Support Consultant TEST OBJECTIVES...2 COMMENTS...3 DESCRIPTION OF THE TESTS...3 1)

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 - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Code: Lengt h: URL: D94327GC10 5 days View Online The Oracle Database 12c: OCM Exam Preparation Workshop is designed for those candidates

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 Performance Tuning. Overview of performance tuning strategies

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

More information

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

Tablespace Usage By Schema In Oracle 11g Query To Check Temp

Tablespace Usage By Schema In Oracle 11g Query To Check Temp Tablespace Usage By Schema In Oracle 11g Query To Check Temp The APPS schema has access to the complete Oracle E-Business Suite data model. E-Business Suite Release 12.2 requires an Oracle database block

More information

Tips and Tricks on Successful Upgrade to 11gR2

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

More information

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

Tablespace Usage By Schema In Oracle 11g Rac

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

More information

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

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11. Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 7 Table of

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

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

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

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

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

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

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

More information

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

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

More information

Oracle 1Z Oracle Database 11g- Administrator I. Download Full Version :

Oracle 1Z Oracle Database 11g- Administrator I. Download Full Version : Oracle 1Z1-052 Oracle Database 11g- Administrator I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z1-052 QUESTION: 153 User SCOTT executes the following command on the EMP table

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

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

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

Using Oracle STATSPACK to assist with Application Performance Tuning

Using Oracle STATSPACK to assist with Application Performance Tuning Using Oracle STATSPACK to assist with Application Performance Tuning Scenario You are experiencing periodic performance problems with an application that uses a back-end Oracle database. Solution Introduction

More information

Oracle Database Vault

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

More information

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

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

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

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

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

More information

Oracle 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: Administration Workshop Duration: 5 Days Method: Instructor-Led

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

More information

High Availability Options for Oracle Database

High Availability Options for Oracle Database High Availability Options for Oracle Database Presentation by Dan Norris Who is Dan? Virgo Scuba Diver (PADI Advanced OW) Over 21, under 35 Oracle DBA & UNIX Admin background Certifiable: OCM, ACE Director,

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

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

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

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

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

More information

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

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

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

More information

Oracle 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

How To Reduce Temp Tablespace Size In Oracle 11g

How To Reduce Temp Tablespace Size In Oracle 11g How To Reduce Temp Tablespace Size In Oracle 11g 12 How do I find used/free space in a TEMPORARY tablespace? One can manually increase or decrease the size of a datafile from Oracle 7.2 using. With an

More information

An Oracle White Paper April Deploying Oracle Data Guard with Oracle Database Appliance

An Oracle White Paper April Deploying Oracle Data Guard with Oracle Database Appliance An Oracle White Paper April 2012 Deploying Oracle Data Guard with Oracle Database Appliance Table of Contents Introduction... 2 Why do I need a standby database environment?... 2 Why Oracle Data Guard?...

More information

Software Development & Education Center

Software Development & Education Center Software Development & Education Center Oracle 10g Database Administrator What you will learn Oracle 10g Database Administration Workshop 1 This course is your first step towards success as an Oracle professional,

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

Eternal Story on Temporary Objects

Eternal Story on Temporary Objects Eternal Story on Temporary Objects Dmitri V. Korotkevitch http://aboutsqlserver.com About Me 14+ years of experience working with Microsoft SQL Server Microsoft SQL Server MVP Microsoft Certified Master

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

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

Moving Databases to Oracle Cloud: Performance Best Practices

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

More information

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

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version : Oracle 1Z0-052 Oracle Database 11g: Administration I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-052 D. Functionbased index Answer: A QUESTION: 191 The user HR owns the EMP

More information

enterprise professional expertise distilled Implementer's guide Oracle GoldenGate 11g

enterprise professional expertise distilled Implementer's guide Oracle GoldenGate 11g Oracle GoldenGate 11g Implementer's guide Design, install, and configure high-performance data replication solutions using Oracle GoldenGate John P. Jeffries PUBLISHING enterprise professional expertise

More information

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer ORACLG Oracle Press Oracle Database 12c Install, Configure & Maintain Like a Professional Ian Abramson Michael Abbey Michelle Malcher Michael Corey Mc Graw Hill Education New York Chicago San Francisco

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

Oracle Database 12c: Administration Workshop Ed 2 NEW

Oracle Database 12c: Administration Workshop Ed 2 NEW Oracle Database 12c: Administration Workshop Ed 2 NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

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

More information

Oracle Database 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 is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan

What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan What is wrong with PostgreSQL? OR What does Oracle have that PostgreSQL should? Richard Stephan PostgreSQL is an Enterprise RDBMS Schemas, Roles, Accounts Tablespace Management Table Partitioning Write-Ahead

More information

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

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

More information

LOGGING OR NOLOGGING THAT IS THE QUESTION. By: Francisco Munoz Alvarez

LOGGING OR NOLOGGING THAT IS THE QUESTION. By: Francisco Munoz Alvarez LOGGING OR NOLOGGING THAT IS THE QUESTION By: Francisco Munoz Alvarez LOGGING OR NOLOGGING : THAT IS THE QUESTION Francisco Munoz Alvarez Oracle ACE Director CLOUG (Chilean Oracle Users Group) President

More information

Oracle Real Application Clusters Handbook

Oracle Real Application Clusters Handbook ORACLE Oracle Press Oracle Database 11 g Oracle Real Application Clusters Handbook Second Edition K Copalakrishnan Mc Gnaw Hill McGraw-Hill New York Chicago San Francisco Lisbon London Madrid Mexico City

More information

Partial Backup Interview Questions And Answers In Oracle 11g

Partial Backup Interview Questions And Answers In Oracle 11g Partial Backup Interview Questions And Answers In Oracle 11g Take a Full backup using RMAN. Oracle 11G - Backup and Recovery using RMAN How. How to take Execution plan of Complete Stored Procedure in Oracle

More information

Oracle Database 10g: New Features for Release 2 Overview Seminar

Oracle Database 10g: New Features for Release 2 Overview Seminar Oracle Database 10g: New Features for Release 2 Overview Seminar Student Guide D22139GC10 Edition 1.0 November 2005 D22563 Authors Christine Jeal Jean-Francois Verrier Technical Contributors and Reviewers

More information

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

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

"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

Oracle Data Guard Concepts and Administration. 12c Release 2 (12.2)

Oracle Data Guard Concepts and Administration. 12c Release 2 (12.2) Oracle Data Guard Concepts and Administration 12c Release 2 (12.2) E85767-01 May 2017 Oracle Data Guard Concepts and Administration, 12c Release 2 (12.2) E85767-01 Copyright 1999, 2017, Oracle and/or its

More information

MySQL for Database Administrators Ed 4

MySQL for Database Administrators Ed 4 Oracle University Contact Us: (09) 5494 1551 MySQL for Database Administrators Ed 4 Duration: 5 Days What you will learn The MySQL for Database Administrators course teaches DBAs and other database professionals

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database 12c: Administration Workshop Ed 2 Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle Database 12c: Administration Workshop Ed 2 Duration 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

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

supporting Oracle products. An OCA credential is available for several of today s most in -demand technology job roles. OCA & OCP Requirement

supporting Oracle products. An OCA credential is available for several of today s most in -demand technology job roles. OCA & OCP Requirement https://workforce.oracle.com Computer Point Nepal is only authorized center of Oracle as an Oracle Workforce Development Partner Program under Oracle University in Nepal to deliver Official Oracle Trainings.

More information

Oracle Data Guard. Concepts and Administration 11g Release 1 (11.1) B

Oracle Data Guard. Concepts and Administration 11g Release 1 (11.1) B Oracle Data Guard Concepts and Administration 11g Release 1 (11.1) B28294-03 August 2008 Oracle Data Guard Concepts and Administration, 11g Release 1 (11.1) B28294-03 Copyright 1999, 2008, Oracle. All

More information

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

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

More information

Oracle 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

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

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

More information

Oracle 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

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