Migrating Your Database to Oracle Cloud

Size: px
Start display at page:

Download "Migrating Your Database to Oracle Cloud"

Transcription

1 Migrating Your Database to Oracle Cloud Exploring the Options - PRO2520 Simon Pane & Ivica Arsov October 25, 2018

2 About Me Pythian Principal Consultant Working with Oracle since version 6 IOUG Board of Directors Oracle Certified Professional: Database 8, 8i, 9i, 10g, 11g, 12c Oracle Certified Expert Oracle Certified Partner Specialist Oracle ACE MOS Communities Simon_DBA The Pythian Group Inc.,

3 Ivica Arsov Senior Database Consultant Oracle Certified Master 12c & 11g Oracle ACE Blogger Twitter: IvicaArsov Blog: The Pythian Group Inc.,

4 Conference and/or Webcast Speakers For The Pythian Group Inc.,

5 PYTHIAN A global IT company that helps businesses leverage disruptive technologies to better compete. Our services and software solutions unleash the power of cloud, data and analytics to drive better business outcomes for our clients. Our 20 years in data, commitment to hiring the best talent, and our deep technical and business expertise allow us to meet our promise of using technology to deliver the best outcomes faster. The Pythian Group Inc.,

6 20 Years in Business 400+ Pythian Experts in 35 Countries 350+ Current Clients Globally The Pythian Group Inc.,

7 PYTHIAN TIMELINE Remote Database Management Services Oracle, Microsoft SQL Server, MySQL Cloud emerges, DevOps practice established Hadoop practice established First Cloud Managed Service Expanded Open Source databases Cassandra, MongoDB Cloud partnerships with Google, AWS, Microsoft Analytics practice established Competencies grow with Cloud partners Data, Machine Learning, Migrations, DevOps 11,000 database systems under Pythian management Analytics as a Service launches Completed one of the world s most complex Cloud Migrations The Pythian Group Inc.,

8 AGENDA Considerations: There s more to consider than the technology Solution Alternatives: Which technical solution is most applicable under what circumstances The Pythian Group Inc.,

9 Where to Start

10 NFRs Drive the Technology Not the Other Way Around Define the NFRs and Business Requirements NFR = Non-Functional Requirements Examples: downtime, encryption, security Need to understand parameters in which we re working How much resource time to invest vs software procurement or licensing costs Then move on to the technical fun part: The technical solutions that will satisfy the NFRs The Pythian Group Inc.,

11 Technical Architecture & Design Questions Should the cloud migration include: A database version upgrade? Architectural changes (i.e. to/from RAC or to/from ASM)? Edition change? Consolidation (i.e. at the server level or DB multitenancy)? Data purging (leave some old stuff behind)? Inclusion of additional options/features (cloud may includes features not licensed on-premises)???? Cloud IaaS vs DBaaS (ADW, ATP)? The Pythian Group Inc.,

12 Fundamental Approach Decisions Which is most aligned with the NFRs, business requirements and technical direction? Physical Conceptually simple Like for like (lift and shift) Near-zero downtime options Logical More complex implementation Upgrade and change Subset or consolidation Near-zero downtime options Advanced Custom solutions Mixed technology solutions Manual transfers The Pythian Group Inc.,

13 Underpinning Common Layers Networking and Security

14 Cloud Networking - VCN and VNICs Virtual Cloud Network - VCN Customizable virtual private network Virtual Network Interface Cards (VNICs) Enables a compute instance to be connected to a VCN You have complete control over your network environment IPv6 is not currently supported The Pythian Group Inc.,

15 Cloud Networking - VCN and VNICs Oracle cloud instances can connect to: The Internet (CIDR blocks can be specified/filtered) Your on-premises data center using an IPSec VPN tunnel connection or FastConnect Instances in peered VCNs Oracle Cloud Infrastructure services such as Object Storage The Pythian Group Inc.,

16 Cloud Networking - VCN peering Peering: connecting multiple virtual cloud networks (VCNs) VCN peering traffic is encrypted Local VCN peering (within regions) Remote VCN peering (across regions) Local VCN peering is supported in all Oracle Cloud Infrastructure regions Remote VCN peering is supported between: Ashburn and Phoenix (US) Frankfurt and London (EU) The Pythian Group Inc.,

17 Database Cloud Service - Network Encryption Native Oracle Net encryption is used by default: [oracle@iarsov admin]$ cat sqlnet.ora... SQLNET.ENCRYPTION_SERVER=REQUIRED SQLNET.CRYPTO_CHECKSUM_SERVER=REQUIRED SQLNET.ENCRYPTION_TYPES_SERVER=(AES256,AES192,AES128) SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER=(SHA1) SQLNET.ENCRYPTION_CLIENT=REQUIRED SQLNET.CRYPTO_CHECKSUM_CLIENT=REQUIRED SQLNET.ENCRYPTION_TYPES_CLIENT=(AES256,AES192,AES128) SQLNET.CRYPTO_CHECKSUM_TYPES_CLIENT=(SHA1) The Pythian Group Inc.,

18 Database Cloud Service - Network Encryption Session encryption information is visible from V$SESSION_CONNECT_INFO SQL> select network_service_banner 2 from v$session_connect_info 3* where sid in (select distinct sid from v$mystat) NETWORK_SERVICE_BANNER Oracle Bequeath NT Protocol Adapter for Linux: Version Production Authentication service for Linux: Version Production Encryption service for Linux: Version Production AES256 Encryption service adapter for Linux: Version Production Crypto-checksumming service for Linux: Version Production SHA1 Crypto-checksumming service adapter for Linux: Version Production 6 rows selected. The Pythian Group Inc.,

19 JDBC Connections Older JDBC drivers are supported with some tweaks Disabling encryption may be required Error log java.sql.sqlexception: Io exception: Oracle Error ORA java/lang/throwable.<init>(ljava/lang/string;)v+4 (Throwable.java:85)... oracle/jdbc/driver/physicalconnection.<init>(ljava/lang/string;ljava/lang/string;ljava/lang/string ;Ljava/lang/String;Ljava/ oracle/jdbc/driver/t4cconnection.<init>(ljava/lang/string;ljava/lang/string;ljava/lang/string;ljav a/lang/string;ljava/util/ oracle/jdbc/driver/t4cdriverextension.getconnection(ljava/lang/string;ljava/lang/string;ljava/lang /String;Ljava/lang/String oracle/jdbc/driver/oracledriver.connect(ljava/lang/string;ljava/util/properties;)ljava/sql/connect ion;+831 (OracleDriver.ja FATAL ERROR in native method: native code passed a null object to a non-static method The Pythian Group Inc.,

20 Older JDBC Connections SQLNET.ORA Tweaks Disable (comment out): #SQLNET.ENCRYPTION_SERVER = required #SQLNET.CRYPTO_CHECKSUM_SERVER = required #SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER = (SHA1) #SQLNET.ENCRYPTION_TYPES_SERVER = (AES256, AES192, AES128) Enable SQLNET.ALLOWED_LOGON_VERSION_CLIENT=8 SQLNET.ALLOWED_LOGON_VERSION_SERVER= , 00000, "No common encryption or data integrity algorithm" // *Cause: The client and server have no algorithm in common for // either encryption or data integrity or both. // *Action: Choose sets of algorithms that overlap. In other words, // add one of the client's algorithm choices to the server's // list or vice versa. The Pythian Group Inc.,

21 Physical Migration Options

22 Maybe the Easiest Definitely the Most Complete Physical migrations (block by block) have numerous advantages: Guarantees completeness nothing left behind Might be technically simple Might have low downtime Caveats: Platform / Endian Database size and/or redo volume The Pythian Group Inc.,

23 Backup and Recovery Backup using the Oracle Cloud Backup Agent Download agent, configure RMAN to use as a virtual tape device Backup pieces go to the Oracle Cloud Storage Classic Service Restore into the cloud instance (also using the agent) Problems / Issues: Time to transfer if DB is very large No DB changes (upgrade after restore if required) Downtime for restoration Most suitable for non-prod Data sub-setting possible but only via PITR The Pythian Group Inc.,

24 Minimizing Cut-Over Downtime using Replication Add physical replication: Data Guard with a cloud based target Manual standby for SE is possible Problems / Issues: Data Guard requires EE No ability to subset data No consolidation options Easy & Reliable No version or platform changes The Pythian Group Inc.,

25 Dbvisit Standby for Standard Edition (or EE) Dbvisit Standby Additional management control for SE or other benefits Network encryption and network compression Easy to install and use Creates web console GUI A few ports need to be opened between source and target Takes care of everything including creation of the standby DB creates a backup, copies, restores Advanced architectures: supports multiple standbys and cascading The Pythian Group Inc.,

26 Dbvisit Standby Makes the Actual Go-Live Simple The Pythian Group Inc.,

27 Cross - Platform Migration (XTTS) Solution for cross-endian migrations - a MAA best practice recommendation: An enhancement over the normal TTS Replacement for Data Pump if that does not meet your maintenance window The process involves combination of Data Pump for meta-data and RMAN for file conversions Cons: Complexity: higher level of expertise is needed compared to Data Pump Larger time investment is needed to test the migration Validation of the database and application required Some downtime still needed The Pythian Group Inc.,

28 Full Transportable Export/Import Database migration made faster and easier: Use Data Pump to move metadata over a database link quickly The performance of the Transportable Tablespaces mechanism Applicable to migrating non-cdb into a PDB, PDB to PDB, PDB to a non-cdb: Export option is also backported to (with a patch set) Only user-defined object data and metadata is extracted from administrative tablespaces The data segments inside tablespace data files are not read Export operation only extracts metadata describing objects within each data file The Pythian Group Inc.,

29 Cloning a PDB with Encrypted Data in United Mode How to avoid ORA : SQL> create pluggable database REMOTE_CLONE from PDB2@L1 KEYSTORE IDENTIFIED BY "*******"; create pluggable database REMOTE_CLONE from PDB2@L1 KEYSTORE IDENTIFIED BY "*******" * ERROR at line 1: ORA-00283: recovery session canceled due to errors ORA-28374: typed master key not found in wallet The Pythian Group Inc.,

30 Cloning a PDB with Encrypted Data in United Mode As per Oracle documentation: When you clone a PDB, you must make the master encryption key of the source PDB available to cloned PDB. This allows a cloned PDB to operate on the encrypted data. To perform the clone, you do not need to export and import the keys because Oracle Database transports the keys for you even if the cloned PDB is in a remote CDB. However, you will need to provide the keystore password of the CDB where you are creating the clone. However, if the source PDB does not have its own master key we can encounter ORA How can a PDB not have its own master key? The Pythian Group Inc.,

31 Cloning a PDB with Encrypted Data in United Mode Possible scenarios: If the source PDB has its own master key, then everything would work fine. The master key will be copied over to cloned PDB. If the source PDB does not have its own master key (no records in V$ENCRYPTION_KEYS) and no recovery is needed (during clone operation) the clone operation will succeed. But, afterwards any data manipulation over encrypted data will fail. If the source PDB does not have its own master key (no records in V$ENCRYPTION_KEYS) and during clone operation a recovery needs to be done over encrypted data, the clone operation will fail. The Pythian Group Inc.,

32 Logical Migration Options

33 More Flexible but at the Price of Complexity Pros: Cross platform and version (upgrade and migrate) Custom changes (i.e. table and database structure) Selective data sub-setting Migration between endian formats Problems / Issues: Extended downtimes High complexity Good for small databases The Pythian Group Inc.,

34 Data Pump Conventional Export/Import Applicable regardless of endian format Can be used to migrate data on schema/table level Business logic migration (PL/SQL) Steps (check/test DB_LINK import on-premises to cloud): On-premises export Transfer Data Pump files Import Data Pump files Verify data The Pythian Group Inc.,

35 Continuous Sync Tools Oracle provided plus 3rd party tools Pros: Cross-platform / version Some ETL capability Issues: Costs Complexity Schema/table structure compatibility The Pythian Group Inc.,

36 Don t Forget: A Robust Balancing Technique is Essential! The Pythian Group Inc.,

37 Advanced Options Out-of-the-box Ideas (pun intended)

38 Custom Pulls Through DB_LINKs Unique Use Cases A build your own replacement to Data Pump Insert As Select (IAS) through a database link Customize hints for performance: On both the SELECT and INSERT parts of the statement Direct path inserts via the APPEND hint Allows for full DDL customization: PCTFREE, PCTUSED, PARALLEL, etc. Enable constraints with NOVALIDATE if acceptable Use hidden function to manage partitioned table locking The Pythian Group Inc.,

39 Oracle Cloud Infrastructure Data Transfer Appliance Each Data Transfer Appliance supports 150TB of data 30 days period to copy your data and ship back to Oracle Can be extended by contacting Oracle with a SR All data is encrypted by default Encryption passphrase is kept in a separate location It s free service Shipping costs are covered by Oracle The Pythian Group Inc.,

40 Last Resort: Import a Virtual Image if Possible In some (limited) circumstances, it may be possible to convert to or import existing VMDK images: The Pythian Group Inc.,

41 WRAP UP! The Pythian Group Inc.,

42 Summary Remember what wags what: Start with the NFRs and Business Requirements Then consider Architecture and Design Common characteristics/benefits: Network encryption between sites The Pythian Group Inc.,

43 Summary Choose the approach Weigh the pros and cons of each Downtime considerations Remember the edge case solutions Custom IAS solutions have proven effective but is a lot of work Physical replication is still possible with SE Lift and ship The Pythian Group Inc.,

44 COLLABORATE is the largest user-led, user-focused event for the Oracle community. Featuring 1,000+ education and networking opportunities. Discover solutions for wherever you are in your technology journey. COLLABORATE 19 April 7-11, 2019 Gonzalez Convention Center San Antonio, Texas Registration is now open!

45 Thanks and Q&A For Follow-ups: The Pythian Group Inc.,

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by

Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Under the Hood of Oracle Database Cloud Service for Oracle DBAs 2017 ANZ Webinar Tour by Kai Yu Oracle Solutions Engineering Dell EMC Kai Yu Technical Staff, Dell EMC Database Engineering 25+ years working

More information

Infrastructure Consolidation with OCI

Infrastructure Consolidation with OCI Infrastructure Consolidation with OCI Who we are Experts At Your Service Over 60 specialists in IT infrastructure Certified, experienced, passionate Based In Switzerland 100% self-financed Swiss company

More information

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2

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

More information

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

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

More information

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

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

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

More information

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

Migrating Oracle Databases from Amazon Web Services to Oracle Cloud Infrastructure Database O R A C L E W H I T E P A P E R M A Y

Migrating Oracle Databases from Amazon Web Services to Oracle Cloud Infrastructure Database O R A C L E W H I T E P A P E R M A Y Migrating Oracle Databases from Amazon Web Services to Oracle Cloud Infrastructure Database O R A C L E W H I T E P A P E R M A Y 2 0 1 8 Table of Contents Purpose of This White Paper 4 Scope and Assumptions

More information

Oracle Database Security

Oracle Database Security Oracle Database Security Top Things You Could & Should Be Doing Differently Simon Pane November 17, 2016 About ME Pythian Solution Architect Working with Oracle DB since version 6 Oracle Certified Professional:

More information

Migrating Enterprise Applications to the Cloud Session 672. Leighton L. Nelson

Migrating Enterprise Applications to the Cloud Session 672. Leighton L. Nelson Migrating Enterprise Applications to the Cloud Session 672 Leighton L. Nelson Leighton L. Nelson Instructional Technology Principal Oracle ACE & Oracle Certified Expert Oracle Database Administrator Author/blogger

More information

DBaaS, 12cR2, and Keystores: Avoid Pitfalls, Stay Secure! Jim Czuprynski ViON Corporation October 12, 2017

DBaaS, 12cR2, and Keystores: Avoid Pitfalls, Stay Secure! Jim Czuprynski ViON Corporation October 12, 2017 DBaaS, 12cR2, and Keystores: Avoid Pitfalls, Stay Secure! Jim Czuprynski ViON Corporation October 12, 2017 My Credentials 35+ years of database-centric IT experience Oracle DBA since 2001 Oracle 9i, 10g,

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

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

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

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

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

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

More information

Zero Downtime Migrations

Zero Downtime Migrations Zero Downtime Migrations Chris Lawless I Dbvisit Replicate Product Manager Agenda Why migrate? Old vs New method Architecture Considerations on migrating Sample migration Q & A Replication: Two types Physical

More information

Question: 1 Which three methods can you use to manage Oracle Cloud Infrastructure services? (Choose three.)

Question: 1 Which three methods can you use to manage Oracle Cloud Infrastructure services? (Choose three.) Volume: 91 Questions Question: 1 Which three methods can you use to manage Oracle Cloud Infrastructure services? (Choose three.) A. Oracle Cloud Infrastructure Desktop Client B. Oracle Cloud Infrastructure

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

Introduction to Oracle Databases in the Cloud

Introduction to Oracle Databases in the Cloud Introduction to Oracle Databases in the Cloud Biju Thomas Principal Solutions Architect OneNeck IT Solutions www.oneneck.com @biju_thomas OneNeck IT Solutions at a Glance Backed by Fortune 500 strength

More information

AWS Database Migration Service

AWS Database Migration Service AWS Database Migration Service Database Modernisation with Minimal Downtime John Winford Sr. Technical Program Manager May 18, 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

More information

High Availability Infrastructure for Cloud Computing

High Availability Infrastructure for Cloud Computing High Availability Infrastructure for Cloud Computing Oracle Technology Network Architect Day Reston, VA, May 16, 2012 Kai Yu Oracle Solutions Engineering Lab Enterprise Solutions Engineering, Dell Inc.

More information

Getting Started with Oracle DBaaS

Getting Started with Oracle DBaaS Getting Started with Oracle DBaaS Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com 13-Nov-16 1 About Me Oracle ACE Oracle Certified Professional DBA (OCP) Founder and CEO, Brillix-DBAces President, Israel

More information

Oracle Database Exadata Cloud Service: Technical Deep Dive

Oracle Database Exadata Cloud Service: Technical Deep Dive Oracle Database Exadata Cloud Service: Technical Deep Dive CON6666 Binoy Sukumaran Vice President Database Cloud Services Karl S Jonsson Senior Enterprise Architect Reinhart Foodservice, LLC Brian Spendolini

More information

Eliminating Downtime When Migrating or Upgrading to Oracle 10g

Eliminating Downtime When Migrating or Upgrading to Oracle 10g Transactional Data Management Solutions December 13, 2005 NYOUG Eliminating Downtime When Migrating or Upgrading to Oracle 10g Agenda GoldenGate Overview What is Transactional Data Management? Why Migrate/Upgrade

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

How to Move Your Oracle Database to The Cloud. Clay Jackson Database Solutions Sales Engineer

How to Move Your Oracle Database to The Cloud. Clay Jackson Database Solutions Sales Engineer How to Move Your Oracle Database to The Cloud Clay Jackson Database Solutions Sales Engineer Agenda: Clear the clouds on (pun intended) What s The Cloud? Why Should I Move to The Cloud? How Do I Move to

More information

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Upgrade Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2010 Upgrade Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade...

More information

Frequently Asked Questions for Oracle

Frequently Asked Questions for Oracle Frequently Asked Questions for Oracle Autonomous Database This document includes a list of frequently asked questions and answers for the Oracle Autonomous Database (ADB), Autonomous Data Warehouse and

More information

Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager

Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager Hari Srinivasan Consulting Product Manager, Oracle Bala Kuchibhotla Sr. Director Engineering, Oracle Gurushankar Director

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

Dbvisit Product and Company Website Copy

Dbvisit Product and Company Website Copy Dbvisit Product and Company Website Copy To promote maximum effectiveness with our partnership, we are supplying you with Dbvisit copy for your website. Below you will find copy by Dbvisit Partner Type

More information

Autonomous Database Level 100

Autonomous Database Level 100 Autonomous Database Level 100 Sanjay Narvekar December 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and

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

CO Oracle Database 12c: Backup and Recovery Workshop

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

More information

WLS Neue Optionen braucht das Land

WLS Neue Optionen braucht das Land WLS Neue Optionen braucht das Land Sören Halter Principal Sales Consultant 2016-11-16 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

CHAPTER. Overview of Migration, Transformation, and Upgrade Methodologies

CHAPTER. Overview of Migration, Transformation, and Upgrade Methodologies CHAPTER 1 Overview of Migration, Transformation, and Upgrade Methodologies 4 Oracle Database Upgrade, Migration & Transformation Tips & Techniques We have written this book to fill a need that we ve noticed

More information

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

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Recovery Manager (RMAN): Not Just for Backups Anymore Steven Wertheimer, Oracle, Senior Director Jeff Branan, TDS Telecom, Database

More information

Oracle Database 12c: New Features For Administrators

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

More information

Deploying High Availability and Business Resilient R12 Applications over the Cloud

Deploying High Availability and Business Resilient R12 Applications over the Cloud Deploying High Availability and Business Resilient R12 Applications over the Cloud Session ID#: 13773 Deploying R12 applications over the cloud - The best practices you need to know and the pitfalls to

More information

An Insider s Guide to Oracle Autonomous Transaction Processing

An Insider s Guide to Oracle Autonomous Transaction Processing An Insider s Guide to Oracle Autonomous Transaction Processing Maria Colgan Master Product Manager Troy Anthony Senior Director, Product Management #thinkautonomous Autonomous Database Traditionally each

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

Provide One Year Free Update!

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

More information

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

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 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

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

NetApp Solutions for Oracle

NetApp Solutions for Oracle NetApp Solutions for Oracle for BCCServices HROUG, Rovinj Oct. 19th 2007 Bernd Dultinger Sales Manager Eastern Europe Agenda NetApp and Oracle Partnership NetApp and Oracle Highlights NetApp Solutions

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

What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud

What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud What s New with Oracle Database 12c on Windows: On-Premises and in the Cloud Santanu Datta Vice President Database Technologies Alex Keh Senior Principal Product Manager Database Technologies Oracle Confidential

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

Zero Data Loss Recovery Appliance: Insider s Guide to Architecture & Best Practices

Zero Data Loss Recovery Appliance: Insider s Guide to Architecture & Best Practices Zero Data Loss Recovery Appliance: Insider s Guide to Architecture & Best Practices Tim Chien Director of Product Management Oracle Development Jony Safi Senior Manager Oracle Development Stefan Reiners

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

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

More information

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

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Reduced Upgrade Memory & Migrate Footprint Oracle Database 12c Sandra Sandra Skehin Skehin Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Safe Harbor Statement The following is intended

More information

Oracle CoreTech Update OASC Opening 17. November 2014

Oracle CoreTech Update OASC Opening 17. November 2014 Oracle CoreTech Update OASC Opening 17. November 2014 Roger Wullschleger Senior Manager Sales Consulting CoreTech Oracle Software (Schweiz) GmbH Copyright 2014, Oracle and/or its affiliates. All rights

More information

ORACLE DBA I. Exploring Oracle Database Architecture

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

More information

Oracle Database 12c at Wellcome Trust Sanger Institute (WTSI)

Oracle Database 12c at Wellcome Trust Sanger Institute (WTSI) Oracle Database 12c at Wellcome Trust Sanger Institute (WTSI) Oracle Open World - 2013 Kalyan Kallepally Principal Database Administrator About Me Working as Principal Database Administrator at Wellcome

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 Database Lifecycle Management

Oracle Database Lifecycle Management Oracle Database Lifecycle Management Simplified Database management across clouds #EM12c Copyright 2014 Oracle and/or its affiliates. All rights reserved. Agenda Key Challenges and Solutions Oracle Database

More information

DOAG 2013 Oracle 12c Backup & Recovery

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

More information

Hitchhiker's Guide. to upgrade to Oracle Database 12c. Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation

Hitchhiker's Guide. to upgrade to Oracle Database 12c. Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation Hitchhiker's Guide to upgrade to Oracle Database 12c Mike Dietrich Senior Principal Technologist Database Upgrades Oracle Corporation Updated: 3-APR-2014 Hitchhiker's Guide to Oracle Database Upgrades

More information

Data on Demand: Advanced Cloning Automation for DBAs Enterprise Manager

Data on Demand: Advanced Cloning Automation for DBAs Enterprise Manager Data on Demand: Advanced Cloning Automation for DBAs Enterprise Manager Subhadeep Sengupta Consulting Product Manager, Oracle Peter Arumainathan Senior Consultant, OOCL Presented with October 28, 2015

More information

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

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

More information

ORACLE 11g R2 New Features

ORACLE 11g R2 New Features KNOWLEDGE POWER Oracle Grid Infrastructure Installation and Upgrade Enhancements Oracle Restart ASM Enhancements Storage Enhancements Data Warehouse and Partitioning Enhancements Oracle SecureFiles Security

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

Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management

Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management Fabio Batista Sales Consultant June 25, 2015 Copyright 2015, Oracle and/or its affiliates.

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

Use Case: Enhance security for a database with sensitive data. Koen Van Bastelaere Oracle DBA

Use Case: Enhance security for a database with sensitive data. Koen Van Bastelaere Oracle DBA Use Case: Enhance security for a database with sensitive data Koen Van Bastelaere Oracle DBA Agenda About me The project OS Database Application Encryption and identity Q&A 2 Agenda About me The project

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

Migrate +230 TB databases in less than 1 day

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

More information

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 Server 12c Pros and Cons

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

More information

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2

The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 1 The Fastest and Most Cost-Effective Backup for Oracle Database: What s New in Oracle Secure Backup 10.2 Donna Cooksey Principal Product Manager, Oracle Corporation Sean McKeown

More information

Survey of Oracle Database

Survey of Oracle Database Survey of Oracle Database About Oracle: Oracle Corporation is the largest software company whose primary business is database products. Oracle database (Oracle DB) is a relational database management system

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

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

Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Duration: 5 Days What you will learn Throughout the lessons of the Oracle Database 12c

More information

Database Level 200. Sanjay Narvekar November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 200. Sanjay Narvekar November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 200 Sanjay Narvekar November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be

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

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

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Upgrade to Oracle Database 12c 何革新 Gexin.he@oracle.com The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

More information

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

Oracle Autonomous Database Oracle Autonomous Database Maria Colgan Master Product Manager Oracle Database Development August 2018 @SQLMaria #thinkautonomous Safe Harbor Statement The following is intended to outline our general

More information

Roy F Swonger Vice President Database Upgrades & Utilities Oracle Corporation

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

More information

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

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

More information

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

Copyright 2018, Oracle and/or its affiliates. All rights reserved. Maximum Availability Architecture Best Practices for the Cloud Markus Michalewicz, Senior Director of Product Management Sebastian Solbach, Consulting Member of Technical Staff October 25, 2018 Safe Harbor

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

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

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year! DUMP STEP Question & Answer ACCURATE STUDY GUIDES, HIGH PASSING RATE! Dump Step provides update free of charge in one year! http://www.dumpstep.com Exam : 1Z1-060 Title : Upgrade to Oracle Database 12c

More information

DBAs can use Oracle Application Express? Why?

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

More information

Oracle Database Cloud for Oracle DBAs Ed 3

Oracle Database Cloud for Oracle DBAs Ed 3 Oracle University Contact Us: 800-260-690 Oracle Database Cloud for Oracle DBAs Ed 3 Duration: 3 Days What you will learn Note: No hands-on lab environment for the Training On Demand course format This

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 Maximum Availability Architecture for Oracle Cloud

Oracle Maximum Availability Architecture for Oracle Cloud Oracle Maximum Availability Architecture for Oracle Cloud Best Practices and Techniques Sridhar Ranganathan Sr. Principal Product Manager Oracle Database MAA October 04, 2017 Safe Harbor Statement The

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

Migrating Enterprise BI to Azure

Migrating Enterprise BI to Azure Migrating Enterprise BI to Azure Best Practices Wlodek Bielski SQLSat Kyiv Team Yevhen Nedashkivskyi Mykola Pobyivovk Denis Reznik Eugene Polonichko Oksana Borysenko Oksana Tkach Sponsors Session will

More information

Oracle Database Exadata Cloud Service: Technical Deep Dive

Oracle Database Exadata Cloud Service: Technical Deep Dive Oracle Database Exadata Cloud Service: Technical Deep Dive [TRN4117] Nitin Vengurlekar, CTO-Architect-Service Delivery-Cloud Evangelist, Viscosity North America Niloy Banerjee, Senior Director of Development

More information

Oracle Database Backup And Recovery Advanced User's Guide 11g Pdf

Oracle Database Backup And Recovery Advanced User's Guide 11g Pdf Oracle Database Backup And Recovery Advanced User's Guide 11g Pdf applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe

More information

Managing Oracle Database in Oracle Database Exadata Express Cloud Service. Ing. Rita Nuñez

Managing Oracle Database in Oracle Database Exadata Express Cloud Service. Ing. Rita Nuñez Managing Oracle Database in Oracle Database Exadata Express Cloud Service Ing. Rita Nuñez Systems Engineer Oracle DBA CEO of Tecnix Solutions Oracle University Instructor Coordinator Database & RAC AROUG

More information

Co-creation for Success

Co-creation for Success SAP SAPPHIRE NOW 2018 Orlando, June 5-7, 2018 Human Centric Innovation Co-creation for Success 0 2018 FUJITSU Fujitsu Hybrid IT Conduit for Digital Transformation Orlando, June 5-7, 2018 Human Centric

More information

Exadata Implementation Strategy

Exadata Implementation Strategy BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

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