From Dataguard to Sharding High Availibility in the Oracle DB

Size: px
Start display at page:

Download "From Dataguard to Sharding High Availibility in the Oracle DB"

Transcription

1 From Dataguard to Sharding High Availibility in the Oracle DB Matthias Fuchs, Principal Consultant, esentri AG Nürnberg DOAG Konferenz 16. November Nürnberg

2 From Data Guard to Sharding - High Availability in the Oracle DB > Data Guard - Introduction and Features > Implementation - Experiences and Examples out of customer projects > Theory Potential and Limitations > Oracle Sharding webscale Availability 2

3 Bio Matthias Fuchs Principal > > > > 10+ years Experience with Oracle Database, Middleware, SOA OCP Engineered Systems > Exadata > Exalogic Link with esentri 3

4 Data Guard - Introduction and Features 4

5 Data Guard Overview Datacenter 1 Primary Database Redo Transport Datacenter 2 Active Dataguard Read only Data Guard Broker Cloud Control 5

6 Data Guard Conclusion > transactional consistent copy of the primary database > transmitting redo data > single-instance Oracle database or an Oracle RAC > It isn t > Different Versions Physical - see valid for Standby first Patching Readme > Difference OS Dok ID: Microsoft Windows (32-bit), 10 - Linux (32-bit), 8 - Microsoft Windows IA (64-bit), 20 Solaris X-86 6

7 Data Guard Types of standby Databases > Physical > Logical > identical copy of the primary database > a physical standby database can receive and apply redo while it is open for read-only access > a physical standby database can be used to install eligible one-off patches, patch set updates (PSUs), and critical patch updates (CPUs), in rolling fashio > Contains the same logical information as the production database > kept synchronized with the primary database through SQL > The flexibility of a logical standby database lets you upgrade Oracle Database software (patch sets and new Oracle Database releases) > Snapshot Standby > fully updatable standby database > a snapshot standby database does not apply the redo data that it receives > updatable snapshot of a physical standby database > redo data received by a snapshot standby database is not applied until it is converted back into a physical standby 7

8 Data Guard Protection Modes > Maximum Availability > highest level of data protection that is possible without compromising the availability > If the primary does not receive acknowledgement from at least one synchronized standby Maximum Perfomance > SYNC/AFFIRM versus SYNC/NOAFFIRM (FastSync) > NetTimeout > Maximum Performance > This protection mode provides the highest level of data protection that is possible without affecting the performance of a primary database > ASYNC/NOAFFIRM > Standby hat keinen Einfluss auf Primary > Maximum Protection > Oracle recommends that a minimum of two standby databases be used to protect a primary database > SYNC/AFFIRM > Zero Data Loss 8

9 12c Transport Services > Synchronous redo transport > *.log_archive_dest_2= service=astandby LGWR SYNC.. > *.log_archive_dest_3= service=bstandby LGWR SYNC.. > Cascaded Redo Transport > Only physical standby databases can cascade redo > Oracle Active Data Guard option Sync/Affirm Async/Noaffirm 9

10 12c Transport Services Far Sync > Far Sync Instances - little disk and processing resources > manages a control file, receives redo, archives redo logs > No data files > Oracle Active Data Guard Far Sync feature Sync/Affirm Async/Noaffirm Control, Log Files No Data Files, No media Recovery Zero Data Loss target Open Read onlymöglich 1

11 Features 12c > Automatic Block Repair High Availability > Active Data Guard automatically performs block media recovery that is transparent to the application. Active Data Guard repairs physical corruption on a primary database using a good version of the block retrieved from the standby. Conversely, corrupt blocks detected on the standby database are automatically repaired using the good version from the primary database. > Application Continuity > Application Continuity is a new application-independent capability for Oracle Database 12c that recovers incomplete requests from an application perspective and masks many system, communication, and hardware failures, and storage outages from the end-user. It also ensures that end-user transactions are executed no more than once. Application Continuity is included with Active Data Guard. > Global Data Services > Oracle Global Data Services (GDS) is a new capability for Oracle Database 12c that extends familiar RAC-style connect-time and run-time load balancing, service failover and workload management capabilities to a collection of replicated databases, be it within a single datacenter or across multiple datacenters. GDS is included with the Active Data Guard. 1

12 Features 12.2 > A new database initialization parameter, DATA_GUARD_SYNC_LATENCY, enables you to define the maximum amount of time (in seconds) that the primary database may wait before disconnecting subsequent destinations after at least one synchronous standby has acknowledged receipt of the redo > The new ENABLED_PDBS_ON_STANDBY initialization parameter enables you to specify a subset of pluggable databases (PDBs) for replication on a physical standby of a multitenant container database (CDB). In releases prior to Oracle Database 12c Release 2 ( ), you had to specify either all PDBs or none > Oracle Database In-Memory column store (IM column store) is now supported on standby databases in Oracle Active Data Guard (ADG) environments. > You can now use the Oracle Diagnostic Pack with an Oracle Active Data Guard standby database that is open read-only 1

13 Implementation - Experiences and Examples out of customer projects 13

14 Aus der Praxis - Aufbau Topic Logging Static Listener Entries Password File Duplicate from active Cluster Registry Single -> RAC Check Beschreibung ALTER DATABASE FORCE LOGGING Connect to closed instances possible, DGMGR not needed since 12c, - Clusterware ASM! duplicate target database for standby from active database spfile parameter_value_convert 'chicago','boston' set db_unique_name='boston' Register Standby Database Resources with Clusterware... First time a lot todo (DBCA, rconfig, manual) DGMGRL -> alter system set dg_broker_start=true sid='*'; show configuration verbose; show DATABASE verbose <prod><stdb> Doc ID

15 Multitenenat > One database on standby database, many pluggable databases > ENABLED_PDBS_ON_STANDBY -> R12.2 > PDB$SEED > Template DB > Read only > Listener > All service are available, pluggable? > Move Pluggable between containers > Optimization Move data files 12c > Online tablespace move > Online table move 12c! 1

16 Multitenenat PDB$SEED + Start UP > Save State of Containers CREATE OR REPLACE TRIGGER open_pdbs AFTER STARTUP ON DATABASE BEGIN EXECUTE IMMEDIATE 'ALTER PLUGGABLE DATABASE ALL OPEN'; END open_pdbs; / > Working with PDB$SEED select con_name, state from dba_pdb_saved_states; ALTER PLUGGABLE DATABASE PDBP2 SAVE STATE; select con_name, state from dba_pdb_saved_states; CON_NAME STATE PDBP2 OPEN alter pluggable database pdb$seed close * ERROR at line 1: ORA-65017: seed pluggable database may not be dropped or altered SQL> alter session set "_oracle_script"=true SQL> alter pluggable database pdb$seed close; SQL> alter pluggable database pdb$seed open read write; Pluggable database altered. 1

17 Redologs, Size, Backup > show parameter "_deferred_log_dest_is_valid" -> false > If you want to delete archivelogs even if they are not applied at standby > Multi process for redo recovery > RECOVER STANDBY DATABASE PARALLEL > Block checking > Message Size > See best practice > Performance > OLTP Online Transaktion Processing > ODS Operational Data Store 1

18 Performance NoLogging Data guard? Primary RMAN Catalog Standby Inc Backup, Archive Backup Force Logging on Inc Restore Apply Archivelog zu SCN Snapshotdatabase Änderungen auf SPARSE Disks Nach jedem Appl neu erstellen RESTORE STANDBY CONTROLFILE FROM SERVICE; RECOVER DATABASE NOREDO; (CATALOG!) RECOVER DATABASE FROM SERVICE primary_db NOREDO SECTION SIZE 120M; -> Logs Force Logging 1

19 Theory Potential and Limitations 19

20 Availability Availability =!"#$%&!"#$%&'()*+$#%& > Downtime: > Planed > Unplanned > Availability 24x7 means in most cases > Planed and unplanned downtimes influence Availability 2

21 ACID > Defined by Jim Gray end of 1970s > A transaction is a transformation of state which has the properties of atomicity (all or nothing), durability (effects survive failures) and consistency (a correct transformation) > Basic for all relational database systems > Atomic: > closed > All or nothing > Consistent > Transactions leave consistent state > Normalization, foreign keys > Isolated > Transactions can run parallel > One transaction doesn t see changes of running other transactions > Durable > All changes after commit are persistent > Even soft or hardware failures don t change commited data 21

22 ACID

23 CAP Theorem > Eric Brewer aus dem Jahre 2000 > In 2000, Eric Brewer outlined the CAP conjecture, which was later granted theorem status when a mathematical proof was provided. > The CAP theorem says that in a distributed database system, you can have at most only two of Consistency, Availability, and Partition tolerance > Consistency > every user of the database has an identical view of the data at any given instant. > Availability > event of a failure, the database remains operational. > Partition Tolerance > the database can maintain operations in the event of the network s failing between two segments of the distributed system > Example: > AP Domain Name System > CA Relationales Datenbank Management System > CP Banking-System C A P 23

24 CAP Theorem No Go Consistency Strict Consistency Partition Toleranz Availibility Eventual Consistency 24

25 Sharding App Server > Application complexity > Es muss das richtige Shard angesprochen werden > Während des Wachstums werden die Teile unterschiedlich verteilt - Maintenance > Crippled SQL > it is not possible to issue a SQL statement that operates across shards > Complex joins > Loss of transactional integrity - CID transactions against multiple shards are not possible > Operational complexity. Memcache Shard A-F Shard G-P Shard Q-Z Data Tier 2

26 Webscale, Enterprise Partition Tolerant, Availability Example Cassandra 1. Write 3. write I A B 2. write Write Decisions: All Quorum (Each, Local) One One, Two, Three (Local) ANY H C G D Different rack Separate data center F E difference per insert 2

27 Oracle Sharding webscale Availability 27

28 Sharding at Oracle > Extreme Scalability. Sharding eliminates performance bottlenecks and makes it possible to linearly scale performance and capacity by adding shards. > Fault Containment. Sharding is a shared nothing architecture that eliminates single points of failure, such as shared disk, SAN, and clusterware, and provides strong fault isolation the failure or slow-down of one shard does not affect the performance or availability of other shards. > Global Data Distribution. Sharding makes it possible to store particular data close to its consumers and satisfy regulatory requirements when data must be located in a particular jurisdiction. > Rolling Upgrades. Applying configuration changes on one shard at a time does not affect other shards, and allows administrators to first test the changes on a small subset of data. > Simplicity of Cloud Deployment. Sharding is well suited to deployment in the cloud. Shards may be sized as required to accommodate whatever cloud infrastructure is available and still achieve required service levels. 2

29 Partitioning Table T1 Table T1 Table T1 Partition 2

30 Sharding Table T1 Table T1 Shard 3

31 CREATE SHARDED TABLE Customers ( CustNo NUMBER NOT NULL, Name VARCHAR2(50), Address VARCHAR2(250), CONSTRAINT RootPK PRIMARY KEY(CustNo) ) PARTITION BY CONSISTENT HASH (CustNo) PARTITIONS AUTO TABLESPACE SET ts1; Oracle Sharding Materialized View Replication(duplicated tables - read-only materialized view.) CREATE DUPLICATED TABLE Products ( StockNo NUMBER PRIMARY KEY, Description VARCHAR2(20), Price NUMBER(6,2)) ); 3

32 Sharding Objects > Sharded Table A sharded table is a table that is partitioned into smaller and more manageable pieces among multiple databases, called shards. > Sharded Table Family A sharded table family is a set of tables that are sharded in the same way. > Duplicated Tables In addition to sharded tables, an SDB can contain tables that are duplicated on all shards. > Non-Table Objects Created on All Shards In addition to duplicated tables, other schema objects, such as users, roles, views, indexes, synonyms, functions, procedures, and packages, and non-schema database objects, such as tablespaces, tablespace sets, directories, and contexts, can be created on all shards. > DDL Execution in a Sharded Database To create a schema in an SDB, you must issue DDL commands on the shard catalog database, which validates the DDLs and executes them locally first. > DDL Syntax Extensions for the Sharded Database Oracle Sharding introduces changes to the SQL DDL statements. DDL statements with this syntax can only be executed against a sharded database. 3

33 Archtektur Übersicht App Tier Application Server Weblogic Routing Tier Directors (GSM) Shard Catalog Global Data Services Catalog Service Data Tier DB 3

34 Shard Groups and Replikation > ADD SHARDGROUP -shardgroup shardgroup1 -region dc1 -deploy_as primary > ADD SHARDGROUP -shardgroup shardgroup2 -region dc1 -deploy_as active_standby > ADD SHARDGROUP -shardgroup shardgroup3 -region dc2 -deploy_as active_standby > CREATE SHARD -shardgroup shardgroup1 -destination host01 > CREATE SHARD -shardgroup shardgroup1 -destination host02 > CREATE SHARD -shardgroup shardgroup1 -destination host03 >... > CREATE SHARD -shardgroup shardgroup3 -destination host09 > Can be extended with shard spaces! 3

35 Global Data Services > Uses read-only global services exclusively > Uses read/write global services, but is programmed to resolve update conflicts if those services are simultaneously offered by more than one database > Can tolerate replicated data that is potentially stale due to replication lag 3

36 GDS Directors - SHD > GDSCTL> create shardcatalog > GDSCTL> add gsm -gsm sharddirector1 Shard Director Shard Catalog 3

37 Sharding Routing > Direct Routing to a Shard Oracle clients and connections pools are able to recognize sharding keys specified in the connection string for high performance data dependent routing. A shard routing cache in the connection layer is used to route database requests directly to the shard where the data resides. > Queries and DMLs via Proxy Routing in an SDB Sharding supports routing for queries that do not specify a sharding key. This allows the flexibility for any database application to execute SQL statements (including SELECT and DML) in a system where tables are sharded or duplicated without the need to specify the shards where the query should be executed. > When the application cannot pass the sharding key during connect > When the application needs to access data from sharded tables residing on multiple shards > SQL queries typically used in reporting such as - Aggregates on sales data 3

38 Oracle Sharding Pro & Cons What we liked Auto-configuration (Create and Manage Shards and Routing) Out of box support for Shard Catalog, Routing layer, Common Tables for Lookup Cross-shared query support (Not supported in custom sharding) Familiar SQL for sharding management Two level sharding (not supported in other technologies such as NoSQL) Consistent hashing to prevent large data movement as new shards are added Dynamically changing the number of shards Things to be careful of Sharding requires major rework in Data Model and Data Design Duplicated Table Make sure not to overuse; Not for write-heavy use cases Enable connection pool limits per Shard John Kanagaraj, OOW 3

39 Thank You! 39

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: RAC Administration Ed 1

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

More information

Oracle Database 12c R2: RAC Administration Ed 2

Oracle Database 12c R2: RAC Administration Ed 2 Oracle University Contact Us: +36 1224 1760 Oracle Database 12c R2: RAC Administration Ed 2 Duration: 4 Days What you will learn This Oracle Database 12c R2: RAC Administration training will teach you

More information

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

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

More information

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

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

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

More information

ORACLE 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 Database 18c and Autonomous Database

Oracle Database 18c and Autonomous Database Oracle Database 18c and Autonomous Database Maria Colgan Oracle Database Product Management March 2018 @SQLMaria Safe Harbor Statement The following is intended to outline our general product direction.

More information

Oracle DBA Course Content

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

More information

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

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

More information

Database Sharding with Oracle RDBMS

Database Sharding with Oracle RDBMS Database Sharding with Oracle RDBMS First Impressions Robert Bialek Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

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

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

More information

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

Oracle Database Using Oracle Sharding. 18c

Oracle Database Using Oracle Sharding. 18c Oracle Database Using Oracle Sharding 18c E87087-01 February 2018 Oracle Database Using Oracle Sharding, 18c E87087-01 Copyright 2018, Oracle and/or its affiliates. All rights reserved. Primary Author:

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

Marco Mischke, DOAG Regio Nürnberg. Experts for database solutions.

Marco Mischke, DOAG Regio Nürnberg. Experts for database solutions. DataGuard DOs and DONTs Marco Mischke, 21.12.2017 DOAG Regio Nürnberg About me Oracle DBA since 2000 and Version 7.3.4 Certified Professional 10g, 11g RAC / Cluster Certified Expert 10g, 11g, 12c Oracle

More information

Oracle made it easy: Cloud DB Vergleich

Oracle made it easy: Cloud DB Vergleich Oracle made it easy: Cloud DB Vergleich MATTHIAS FUCHS, ESENTRI BORYS NESELOVSKYI, OPITZ CONSULTING DOAG 2018 KONFERENZ, NÜRNBERG Cloud Angebote für Oracle Datenbank ORACLE CLOUD Oracle Datenbank Microsoft

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

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

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

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

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

More information

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

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

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

More information

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

RMOUG Training Days 2018

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

More information

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

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

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

More information

1z z0-060 Upgrade to Oracle Database 12c

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

More information

Oracle 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

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

ZDLRA High Availability for Backup and Recovery

ZDLRA High Availability for Backup and Recovery ZDLRA High Availability for Backup and Recovery Oracle Server Technology High Availability Systems Development Maximum Availability Architecture September 2018 Safe Harbor Statement The following is intended

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

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

Oracle Active Data Guard

Oracle Active Data Guard Oracle Active Data Guard Real-Time Data Protection and Availability ORACLE WHITE PAPER MAY 2018 Table of Contents Introduction 1 Oracle Active Data Guard An Overview 2 How Data Guard Synchronizes Standby

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

Oracle MAA Blueprints for Oracle Cloud Infrastructure (OCI) Deployments

Oracle MAA Blueprints for Oracle Cloud Infrastructure (OCI) Deployments Oracle MAA Blueprints for Oracle Cloud Infrastructure (OCI) Deployments Oracle Database High Availability in the Cloud ORACLE WHITE PAPER DECEMBER 2018 Disclaimer The following is intended to outline our

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

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

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

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 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 Sharding. Linear Scalability, Fault Isolation and Geo-distribution for Web-scale OLTP Applications ORACLE WHITE PAPER APRIL 2017

Oracle Sharding. Linear Scalability, Fault Isolation and Geo-distribution for Web-scale OLTP Applications ORACLE WHITE PAPER APRIL 2017 Oracle Sharding Linear Scalability, Fault Isolation and Geo-distribution for Web-scale OLTP Applications ORACLE WHITE PAPER APRIL 2017 Table of Contents Introduction 1 Benefits of Oracle Sharding 2 Oracle

More information

High Performance Oracle Database in a Flash Sumeet Bansal, Principal Solutions Architect

High Performance Oracle Database in a Flash Sumeet Bansal, Principal Solutions Architect High Performance Oracle Database in a Flash Sumeet Bansal, Principal Solutions Architect WHY USE NAND FLASH Overcome traditional I/O bottlenecks Create simpler architectures Save on energy costs Drive

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

SE2 goes Enterprise. Hidden Treasures in Oracle Dr. Thomas Petrik DOAG Konferenz, November 2017, Nürnberg

SE2 goes Enterprise. Hidden Treasures in Oracle Dr. Thomas Petrik DOAG Konferenz, November 2017, Nürnberg SE2 goes Enterprise Hidden Treasures in Oracle 12.2 Dr. Thomas Petrik DOAG Konferenz, November 2017, Nürnberg Oracle Container Architecture 2 Single-Tenant is the Default Oracle Database Upgrade Guide

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

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

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

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition Understanding (12.1.0.2) Internals: The Cache Fusion Edition Subtitle Markus Michalewicz Director of Product Management Oracle Real Application Clusters (RAC) November 19th, 2014 @OracleRACpm http://www.linkedin.com/in/markusmichalewicz

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

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

More information

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview This Oracle 11g Release 2 RAC & Grid Infrastructure Administration course provides an introduction to the general features

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

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

Maximum Availability Architecture: Overview. An Oracle White Paper July 2002

Maximum Availability Architecture: Overview. An Oracle White Paper July 2002 Maximum Availability Architecture: Overview An Oracle White Paper July 2002 Maximum Availability Architecture: Overview Abstract...3 Introduction...3 Architecture Overview...4 Application Tier...5 Network

More information

Oracle Active Data Guard

Oracle Active Data Guard Oracle Active Data Guard Real-Time Data Protection and Availability ORACLE WHITE PAPER DECEMBER 2014 Table of Contents Introduction 1 Oracle Active Data Guard An Overview 2 How Data Guard Synchronizes

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

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

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

More information

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

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

More information

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

Migrating Oracle Databases To Cassandra

Migrating Oracle Databases To Cassandra BY UMAIR MANSOOB Why Cassandra Lower Cost of ownership makes it #1 choice for Big Data OLTP Applications. Unlike Oracle, Cassandra can store structured, semi-structured, and unstructured data. Cassandra

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

"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 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version :

Oracle 1Z Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP. Download Full Version : Oracle 1Z0-034 Upgrade Oracle9i/10g OCA to Oracle Database 11g OCP Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-034 QUESTION: 142 You executed the following query: SELECT oldest_flashback_scn,

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata

<Insert Picture Here> Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Exadata MAA Best Practices Series Session 1: E-Business Suite on Exadata Richard Exley Ray Dutcher Richard Exley, Ray Dutcher Oracle Applications, Exadata and MAA Best Practices Exadata

More information

Oracle 12C Administration Course Content:

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

More information

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

NoSQL systems: sharding, replication and consistency. Riccardo Torlone Università Roma Tre

NoSQL systems: sharding, replication and consistency. Riccardo Torlone Università Roma Tre NoSQL systems: sharding, replication and consistency Riccardo Torlone Università Roma Tre Data distribution NoSQL systems: data distributed over large clusters Aggregate is a natural unit to use for data

More information

Oracle Database 11g: RAC Administration Release 2 NEW

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

More information

CIB Session 12th NoSQL Databases Structures

CIB Session 12th NoSQL Databases Structures CIB Session 12th NoSQL Databases Structures By: Shahab Safaee & Morteza Zahedi Software Engineering PhD Email: safaee.shx@gmail.com, morteza.zahedi.a@gmail.com cibtrc.ir cibtrc cibtrc 2 Agenda What is

More information

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z Course Outline [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 28 Apr 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards

More information

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z Course Outline [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z0-063 18 Jun 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards

More information

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

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

More information

Oracle 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

ORACLE RAC DBA COURSE CONTENT

ORACLE RAC DBA COURSE CONTENT ORACLE RAC DBA COURSE CONTENT Course Objectives Understand Oracle Clusterware architecture Describe how Grid Plug and Play affects Clusterware Describe Automatic Storage Management (ASM) architecture Perform

More information

Data Sheet: Storage Management Veritas Storage Foundation for Oracle RAC from Symantec Manageability and availability for Oracle RAC databases

Data Sheet: Storage Management Veritas Storage Foundation for Oracle RAC from Symantec Manageability and availability for Oracle RAC databases Manageability and availability for Oracle RAC databases Overview Veritas Storage Foundation for Oracle RAC from Symantec offers a proven solution to help customers implement and manage highly available

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

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

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

More information

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.)

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) Volume: 183 Questions Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) A. The user cannot set privileges on persistent lightweight jobs. B. The use

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

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

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

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

More information

Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC)

Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC) Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC) Manageability and availability for Oracle RAC databases Overview Veritas InfoScale Enterprise for Oracle Real Application Clusters

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

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

Oracle MAA Reference Architectures

Oracle MAA Reference Architectures Oracle MAA Reference Architectures Oracle Database High Availability On-Premises and in the Cloud ORACLE WHITE PAPER FEBRUARY 2016 Disclaimer The following is intended to outline our general product direction.

More information

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

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 MAA Blueprints for Oracle Bare Metal Cloud Deployments

Oracle MAA Blueprints for Oracle Bare Metal Cloud Deployments Oracle MAA Blueprints for Oracle Bare Metal Cloud Deployments Oracle Database High Availability in the Cloud ORACLE WHITE PAPER JUNE 2017 Disclaimer The following is intended to outline our general product

More information

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

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

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

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

MySQL High Availability. Michael Messina Senior Managing Consultant, Rolta-AdvizeX /

MySQL High Availability. Michael Messina Senior Managing Consultant, Rolta-AdvizeX / MySQL High Availability Michael Messina Senior Managing Consultant, Rolta-AdvizeX mmessina@advizex.com / mike.messina@rolta.com Introduction Michael Messina Senior Managing Consultant Rolta-AdvizeX, Working

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

<Insert Picture Here> Oracle MAA und RAC Best Practices und Engineered Systems

<Insert Picture Here> Oracle MAA und RAC Best Practices und Engineered Systems Oracle MAA und RAC Best Practices und Engineered Systems Jörg Eggelsmann joerg.eggelsmann@oracle.com Leitender Systemberater 0177 5943 142 STCC Nord DB Agenda Maximum Availability

More information

Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant

Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant Oracle Maximum Availability Architecture Best Practices for Oracle Multitenant Joseph Meeks, Oracle Frank Kobylanski, Oracle Kalyan Kallepally, Wellcome Trust Sanger Institute Program Agenda High Availability

More information