Volume Published: March 30, 2010 DBA Online On the front line of database administration DBA Online powers Oracle DBA Contents

Size: px
Start display at page:

Download "Volume 2011-03 Published: March 30, 2010 DBA Online On the front line of database administration DBA Online powers Oracle DBA Contents"

Transcription

1 Volume Volume Published: March 30, Current Vol. Editor: Carol Sheng Newsletter On the front line of database administration powers Oracle DBA Contents Summary of s March 2011 Seminar Oracle Flashback Oracle Advanced Compression Oracle E-Business Suite Cloning Procedure RAC to Non-RAC..6 s March 2011 Seminar Speakers and committee members On March 26 th, American successfully hosted another technical seminar, featuring many strong speakers at Crown Plaza in Edison, NJ. The main theme of the seminar was all about the Oracle 11g R2 the hottest technical topic among Oracle professionals, since many are thinking of upgrading their database to Oracle 11g R2 and using RAC. The seminar was hosted by committee member Carol Sheng, who first introduced the President of, David Wang. As usual, David shared his one-minute tip. This time, the real world tip he shared was Advanced Compression. Oracle Advanced Compression in Oracle Database 11g Release 2 helps manage more data in a cost-effective manner. With data volumes tripling every two years on average, Oracle Advanced Compression delivers compression 1

2 rates of 2-4 times faster across all types of data and applications. Storage savings from compression will cascade throughout the data center, reducing network traffic and data backups as well. In addition, by reading fewer blocks off disk, Oracle Advanced Compression also improves query performance. The speaker for the first presentation was Mr. Sean Kim. He is currently a Senior Principal Core Delivery Instructor in Oracle University and has over 14 years of industry experience in IT as a DBA, IT administrator, author, and instructor. Sean has expertise in Oracle core technologies and teaches a broad spectrum of high-end core technology courses including Exadata Database Machine, Linux / Solaris Administration, Oracle Grid Infrastructure & RAC, Streams, Data Guard, Data warehousing and more. Furthermore, he is a lead for tuning courses, technical reviewer for Oracle coursewares & certification exams. Mr. Sean Kim is an Oracle Certified Professional (OCP) from release 8i to 11g, Oracle Certified Expert (OCE) for RAC and Linux, Solaris Certified System Administrator (SCSA), Solaris Certified Network Administrator (SCNA), Linux System Administrator (LPI-1), Linux Network Administrator (LPI-2), Certified Internet Webmaster (CIW). He was named to the Oracle University Leadership Circle in 2007, an internal award for the best Oracle Instructors from around the globe and a consistent member of the OU Quality Club. As a matter of fact, our members had recommended him as a speaker after having taken his courses. He was even recognized by many of his students in the audience. Everybody was impressed. Being one of the best instructors in Oracle University, Mr. Kim could explain the complicated technology concept in a way that audience can easily understand. He introduced the Oracle Grid infrastructure, starting with Oracle Database 11g Release 2. Oracle Clusterware and Oracle ASM are installed into a single home directory, which is called the Grid home. It can be installed to support RAC and as restart for standalone server to handle restart oracle resource in the event some of the services on the server fail. For example, without restart, if one instance crash in one server, DBA has to login and manually restart that instance, if restart is installed, this operation can be set up automatically for HA purpose. He also described Oracle Clusterware Process Architecture, the order and relationship of these processes (the lower and upper stack processes), the difference between 10g RAC and 11g RAC and some new 2

3 features in Grid Infrastructure in 11 R2 and really painted a very clear picture. After the presentation, many members asked Sean for his course schedule as they want to take his courses. After Mr. Kim introduced the overall Oracle Grid infrastructure, Mr. Indy Johal went to one area in more detail: Oracle 11g R2 ASM related technology. Inderpal S. Johal has been working as a lead database administrator and architect for more than 13 years. He is the CEO of Data Softech Inc., a New Jersey based company that specializes in providing complete database support solutions and training to many Fortune 500 companies. Mr. Johal has written numerous Oracle technical articles for journals and magazines including Oracle Magazine, and has been a frequent speaker in many Oracle events and user community organizations like Oracle OpenWorld, IOUG, UKOUG, NYOUG, and NJOUG. He is one of our favorite speakers for members He has a Masters Degree in Computer Science from Punjabi University and has worked as a Lead DBA and Architect for AT&T, UPS, Chase Bank, Citicorp, PR Newswire, HCL and IBM etc. In his presentation, Mr. Johal not only introduced many ASM related new enhancements, but also the advantages of using ASM, the ASM instance, and processes. He described the ASM rdbms file creations flow and the different security user role to manage ASM etc. Mr. Johal also showed a live demo on how to use the new utility ASMCA to create an ASM disk group, create volume on top of the disk group, and then create and mount the ACFS file system. Later, he demonstrated how to create snapshots to track/backup changes of ACFS and much more. The last part of the seminar was the panel discussion and real-world DBA examples. Our panelists for this session were our two speakers, President David Wang and two other committee members: Stand Ma and Qi Wang. They are all highly experienced Oracle experts that have being working in the industries for many years. Stan Ma, who is currently a senior Lead DBA for a major financial firm, 3

4 introduced his real case using flash recovery area for restore during a database upgrade. The operation would conventionally take 4 hours to restore but instead it only took 20 minutes to recover to the point before the upgrade. After Stan s real world case, our panelists were asked many questions, all of which were answered. Additionally, the audience stayed to seek advice from our panelists and speakers after the session was finished. We have already received very good feedback from our members that the seminar was a success. They learned a lot about these new technologies and the speakers were phenomenal. The audience even each received a backpack from Oracle! As always, appreciates the effort of our committee, continuous support from our members, and Oracle Corporation for their sponsorship. With their support, we are able to focus on technical seminars like these that help our member community continue to grow by sharing the most recent technology. Committee Requirement Flashback Presentation file provided by Stan Ma 1. Database must be in archive log mode 2. Must have flash recovery area enabled Flashback recovery 1. Flashback database 2. Flashback drop 3. Flashback table 4. Flashback query 5. Flashback transaction query Views 1. V$FLASHBACK_DATABASE_LOG 2. V$FLASHBACK_DATABASE_LOGFILE 3. V$FLASHBACK_DATABASE_STAT Flashback vs. Full backup 1. Save space 2. Save time 3. Short or no database downtime 4

5 Use init.ora or configure flashback parameter dynamically DB_RECOVERY_FILE_DEST_SIZE = 25G DB_RECOVERY_FILE_DEST = /backup/prg/flashback DB_FLASHBACK_RETENTION_TARGET = 600 SQL> ALTER SYSTEM SET DB_FLASHBACK_RETENTION_TARGET = 600; SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=25G; SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST='/backup/GDPFPRG/flashback'; SQL> SHUTDOWN SQL> STARTUP MOUNT EXCLUSIVE; SQL> ALTER DATABASE FLASHBACK ON; SQL> ALTER DATABASE OPEN; SQL> CREATE RESTORE POINT VTM_flashback GUARANTEE FLASHBACK DATABASE; Keep records SQL> SELECT NAME, SCN, TIME FROM V$RESTORE_POINT; SQL> SELECT MAX(SEQUENCE#) FROM V$ARCHIVED_LOG; If the VTM is successful SQL> STARTUP MOUNT FORCE; SQL> DROP RESTORE POINT vtm_flashback; SQL> ALTER DATABASE FLASHBACK OFF; SQL> ALTER DATABASE OPEN; If the VTM fails SQL> STARTUP MOUNT FORCE; SQL> FLASHBACK DATABASE TO RESTORE POINT vtm_flashback; SQL> ALTER DATABASE OPEN; SQL> DROP RESTORE POINT vtm_flashback; SQL> ALTER DATABASE FLASHBACK OFF; SQL> ALTER DATABASE OPEN; Note: Oracle VTM patch All Oracle VTM patches update only 2 components Binaries and/or Data Dictionary. They do not change application data Do not use it for Oracle VTM patch To rollback the Data Dictionary changes, run lcatcpu_rollback.sql (/optware/oracle/ _q310/cpu/cpujan2011 Oracle Advanced Compression - Sharing Oracle New Feature Oracle Advanced Compression, an option introduced in Oracle Database 11 g Enterprise Edition, offers a comprehensive set of compression capabilities to help organizations reduce costs, while maintaining or improving performance. It significantly reduces the storage footprint of databases through compression of structured data (numbers, characters) as well as unstructured data (documents, spreadsheets, XML and other files). It provides enhanced compression for database backups and also includes network 5

6 compression capabilities for faster synchronization of standby databases 2-4X reduction in storage across all environments such as production, standby, test, development, backup, etc. Improved memory efficiency as data remains compressed in memory Minimal or no performance impact on DML operations due to performance optimized compression technology Faster queries in many cases, due to improved I/O and memory efficiency Better network bandwidth utilization Transparent to applications - no application changes required Some examples of Advanced Compression: 1. Compression for OLTP: CREATE TABLE Acct ( acct_id NUMBER, first_name VARCHAR2(30), last_name VARCHAR2(30) ) COMPRESS FOR OLTP; 2. Compression in RMAN: RMAN> SET COMPRESSION ALGORITHM LOW MEDIUM HIGH ; RMAN> backup as COMPRESSED BACKUPSET database archivelog all; 3. Compression in Data Pump: expdp myuser FULL=y DUMPFILE=dpump_dir:full.dmp COMPRESS; 1. Background Info Oracle E-Business Suite Cloning Procedure RAC to Non-RAC By John Gao While many Oracle E-Business Suite customers use RAC in their production system, they usually use single instance databases for their test and development environments. Thus, cloning a RAC enabled EBS to a non-rac system is a common practice. This document provides a cloning procedure for this scenario. Viewers of this document are recommended to review the metalink note , before you carry on cloning activities. The document is written based on the cloning of two actual Oracle EBS systems in my current project. Following are some info about the systems, 1. Source System - R12PRD Oracle EBS Suite R (Oracle database RAC on ASM) 6

7 2. Target System R12DEV Oracle EBS Suite R (single instance database at the backend) 3. Both Oracle EBS system use different database servers 4. Base Directory of both RDBMS /u01/app/<system Name> 5. Base directory for apps tier /u02/shared/<system Name> Non-shared file system on apps tier for INST_TOP /u02/local/<system Name> 6. The oracle account mentioned in this document refers to the account that owns the Oracle EBS RDBMS and the database. The applmgr account refers to the account that owns the Oracle EBS application tier binaries 2. Pre-cloning Steps on the source servers No Step Summary Command Details Note 2.1 Run adpreclone on the DB tier 2.2 Run adpreclone on the apps tier cd $ORACLE_HOME/appsutil/scripts/$CONTEXT_ NAME perl adpreclone.pl dbtier cd $ADMIN_SCRIPTS_HOME perl adpreclone.pl appstier DB should be up and running DB should be up and running 3. Copy binaries from the source servers (execute the steps from the target servers) No Step Summary Command Details Note 3.1 Copy 11g RDBMS Binaries from the source servers Logon as corresponding Oracle account Backup the existing context file and init files (copy the files to ~/BKUP) 7

8 (Only when Oracle RDBMS needs to be refreshed) [! -f ~/BKUP ] && mkdir ~/BKUP cp $CONTEXT_FILE ~/BKUP cp $ORACLE_HOME/dbs/*.ora ~/BKUP - Remove the existing Oracle binaries and the DBF files Remove the Oracle Binaries, cd $ORACLE_HOME/.. rm rf * - Create a script cporabinariesfromsource.sh to include following info # Copy Oracle Binaries echo 'Start to copy Oracle Binaries...' PIPE_FILE=/tmp/cpio_pipe.$$ mkfifo $PIPE_FILE cat $PIPE_FILE (cd /u01/app/<target DB name>/db/tech_st; cpio -idum) & ssh <source oracle account>@<source DB server> "(cd /u01/app/<source DB name>/db/tech_st; find * - depth -print cpio -o )" >$PIPE_FILE rm $PIPE_FILE echo 'Oracle Binary Copy is done!' - Run cporabinariesfromsource.sh $ cporabinariesfromsource.sh 8

9 3.2 Copy Apps binaries from the source server Logon as corresponding applmgr account, on the target Apps server - Backup the existing context file (copy the file to ~/BKUP) - Remove the existing Application Binaries (do NOT touch TechStack) cd $APPL_TOP/.. rm rf * - cd /common_data/arcs/clone - Create a script cpfromsource_appstech.sh to include the following info #!/bin/ksh PIPE_FILE=/tmp/cpio_pipe.$$ mknod $PIPE_FILE p cat $PIPE_FILE (cd /u002/shared/<target DB name>/apps/apps_st; cpio -idum) & ssh <source applmgr account>@<first source apps server name> "(cd /u002/shared/<source DB name>/apps/apps_st; find * -depth -print cpio -o -H newc )" >$PIPE_FILE rm $PIPE_FILE 3.3 Copy Application Tech Stack (10.1.2, Oracle RDBMS) from the source server - Run cpfromsource_appstech.sh $ cpfromsource_appstech.sh Important: - If the source and the target systems are not on the same OS level, please do NOT copy the apps tech stack from the source to the target system - Even when the source and the target systems are on the same OS level, there is NO need to copy Tech Stack to the target system, unless there were tech stack patches applied to the source system, since last instance cloning Execute the following steps, if Tech Stack 9

10 cloning is required, - Logon to the target apps tier as corresponding applmgr account - Create the cpfromsource_techstack.sh script to include the following info, #!/bin/ksh PIPE_FILE=/tmp/cpio_pipe.$$ mknod $PIPE_FILE p cat $PIPE_FILE (cd /u002/shared/<target DB name>/apps/tech_st; cpio -idum) & ssh <source applmgr account>@<first source apps server> "(cd /u002/shared/<source DB name>/apps/tech_st; find * -depth -print cpio -o -H newc )" >$PIPE_FILE rm $PIPE_FILE - Execute the script $ cpfromsource_techstack.sh 4. Run adcfgclone.pl on the target DB server No Step Summary Command Details Note 4.1 Run adcfgclone.pl on the target DB server - Restore the backed up context file (in $HOME/BKUP) to $ORACLE_HOME/appsutil - Restore the backed up init files (in $HOME/BKUP) to $ORACLE_HOME/dbs - Run adcfgclone.pl with the restored context file cd $ORACLE_HOME/appsutil/clone/bin perl adcfgclone.pl dbtechstack <Full path to the context file> 4.2 Turn off RAC on the target instance - Run the following on the target database server cd $ORACLE_HOME/rdbms/lib make -f ins_rdbms.mk rac_off make -f ins_rdbms.mk ioracle 10

11 5. Migrate the database to the target server using RMAN (with reference to metalink note ) All steps in the table below should be run as the oracle database owner No Step Summary Command Details Note 5.1 Create database image (4.2 of note ) of the source database 5.2 Copy the DB image (all files under /export/bkup ) to the target DB server 5.3 Restore and rename database on the target system ( of note ) - On a DB server of the source database, use adclone-crdbimage.sh as a template to create a script to create DB image of the source database cd /common_data/arcs/clone cp adclone-crdbimage.sh adclone-crdbimage-<source DB name>.sh Edit adclone-crdbimage-<source DB name>.sh to include correct info - Execute the script $ adclone-crdbimage-<source DB name>.sh Execute the following on the target DB server as the target database owner, cd /export/bkup ccp r oraarcq@vahpqa11:/export/bkup/*. On the initial node of the target Database tier, - Create a file named adclone_restore_db_<dbname>.sh with the following contents (edit to enter corresponding info for the target instance) export ORACLE_HOME=<Oracle Home of the target DB> export PATH=$ORACLE_HOME/bin:$PATH perl $ORACLE_HOME/appsutil/clone/bin/adclone.pl \ java=/opt/java1.5 \ component=dbtier \ mode=apply \ stage=$oracle_home/appsutil/clone \ method=custom \ dbctxtg=$oracle_home/appsutil/<sid>_<hostname>.xml \ rmanstage=/export/bkup/data/stage \ rmantgtloc=< location for datafiles file on the target system> \ srcdbname=<source system Global DB name> \ pwd=<apps password for the Source system>\ showprogressode Note: Double check the entries before you execute the script. Rman stage is the location of the source RMAN dump files, i.e. /export/bkup/data/stage - Run the above script $ adclone_restore_db_<dbname>.sh 11

12 This script will run autoconfig on Oracele Home and also restore/replicate the database using RMAN scripts (included in the backup files) - Verify that the target database and listener are up and running - Setup and call $HOME/<Ora ID>.env to source the environment 5.4 Run adcfgclone again on the target server option dbconfig 5.5 Verify the database and its listener Run the following on the target server, Shutdown the listener cd $ORACLE_HOME/appsutil/scripts/[CONTEXT_NAME] adautocfg.sh appspass=[apps password] Verify the database and the listener 6. Configure Apps server All the steps in the table below should be run as the applmgr account who owns the apps binaries, on the target apps server No Step Summary Command Details Note 12

13 6.1 Run adcfgclon.pl on the first node of the apps tier $cd <COMMON_TOP>/clone/bin (COMMON_TOP is /u002/shared/<db Name>/apps/apps_st/comn) $ perl adcfgclone.pl appstier Note: When prompted for Target Database, please enter the SID of the first DB node Sample from R12DEV, Provide the values required for creation of the new APPL_TOP Context file. Target System Hostname (virtual or normal) [varhdv85] : Target System Database SID : R12DEV Target System Database Server Node [varhdv85] : vahpdv16 Target System Database Domain Name [cusa.canon.com] : Target System Base Directory : /u002/shared/r12dev Target System Tools ORACLE_HOME Directory [/u002/shared/r12dev/apps/tech_st/10.1.2] : Target System Web ORACLE_HOME Directory [/u002/shared/r12dev/apps/tech_st/10.1.3] : Target System APPL_TOP Directory [/u002/shared/r12dev/apps/apps_st/appl] : Target System COMMON_TOP Directory [/u002/shared/r12dev/apps/apps_st/comn] : Target System Instance Home Directory [/u002/shared/r12dev/inst] : /u002/local/r12dev/inst Do you want the the target system to have the same port values as the source system (y/n) [y]? : n Target System Port Pool [0-99] : 40 UTL_FILE_DIR on database tier consists of the following directories. 1. /usr/tmp 2. /usr/tmp 3. /u01/app/r12dev/tmp 4. /u01/app/r12dev/db/tech_st/11.1.0/appsutil/outbound/r12dev_vahpdv16 5. /u01/app/r12dev/db/tech_st/11.1.0/appsutil/outbound/r12dev1_vahpdv16 6. /usr/tmp Choose a value which will be set as APPLPTMP value on the target node [1] : Start the applications and verify 6.3 Change passwords for system and other special accounts Start the application and perform regular health check Reset passwords for the following accounts, apps/sysadmin/system/sys/canon 13

14 6.4 Shutdown concurrent managers and Update concurrent manager setup (PCP->no PCP) Change the setup of the following managers (remove primary node/secondary node definition), Inventory Manager FastFormula Transaction Manager PO Document Approval Manager 6.5 Change the definition of database directories Select * from dba_directories create or replace directory apps_data_file_dir as '/u001/app/oracle/ofr12/db/tech_st/11.1.0/appsutil/outbound/ofr12_ vahpdv05' 6.6 Turn off archive log SQL> shutdown immediate Database closed. Database dismounted. ORACLE instance shut down. SQL> Startup mount ORACLE instance started. SQL> alter database noarchivelog; SQL> alter database open; 6.7 Change System profiles Change the following system profiles to reflect the new system info, Site Name BNE Server Log Path BNE UIX Physical Directory BNE Upload Import Directory BNE Upload Staging Directory BNE Upload Text Directory POR: Hosted Images Directory.. 14

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide TECHNICAL REPORT Nimble Storage Oracle Backup and Recovery Guide N I M B L E T E C H N I C A L R E P O R T : N I M B L E S T O R A G E F O R O R A C L E B A C K U P A N D R E C O V E R Y 1 Document Revision

More information

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper

Restoring To A Different Location With EBU And RMAN An AppsDBA Consulting White Paper An White Paper Contents 1. OVERVIEW... 1 1.1 DEFINITIONS... 1 2. ENTERPRISE BACKUP UTILITY... 2 2.1 ARCHITECTURE... 2 2.1.1 Target Database... 2 2.1.2 Catalog... 2 2.1.3 Media Management Layer (MML)...

More information

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011

Use RMAN to relocate a 10TB RAC database with minimum downtime. Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Use RMAN to relocate a 10TB RAC database with minimum downtime Tao Zuo tao_zuo@npd.com NPD Inc. 9/2011 Contents Methods of relocate a database with minimum down time RMAN oracle suggested backup strategy

More information

ORACLE CORE DBA ONLINE TRAINING

ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA ONLINE TRAINING ORACLE CORE DBA THIS ORACLE DBA TRAINING COURSE IS DESIGNED TO PROVIDE ORACLE PROFESSIONALS WITH AN IN-DEPTH UNDERSTANDING OF THE DBA FEATURES OF ORACLE, SPECIFIC ORACLE

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about

More information

RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar

RMAN BACKUP & RECOVERY. Recovery Manager. Veeratteshwaran Sridhar RMAN Recovery Manager BACKUP & RECOVERY Veeratteshwaran Sridhar Why Backup & Recovery? The purpose of a backup and recovery strategy is to protect the database against data loss and reconstruct the database

More information

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course will provide you with

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Course ON10G 5 Day(s) 30:00 Hours Introduction This course introduces students to the new features in Oracle Database 10g Release 2 - the database for

More information

Oracle Cloud Storage and File system

Oracle Cloud Storage and File system 2012 Tieto Corporation Oracle Cloud Storage and File system Andrejs Karpovs Oracle Apps DBA Tieto, andrejs.karpovs@tieto.com Few notes about me I Am a DBA Work in Tieto Have 4 years exprerience working

More information

Database Recovery For Newbies

Database Recovery For Newbies Database Recovery For Newbies Paper #521 Bonnie Bizzaro, Susan McClain Objectives Provide basic understanding of recovery processes and terms Define different types of recovery Discuss common recovery

More information

ASM and for 3rd Party Snapshot Solutions - for Offhost. Duane Smith Nitin Vengurlekar RACPACK

ASM and for 3rd Party Snapshot Solutions - for Offhost. Duane Smith Nitin Vengurlekar RACPACK ASM and for 3rd Party Snapshot Solutions - for Offhost backup Duane Smith Nitin Vengurlekar RACPACK POINT-IN-TIME COPY TECHNOLOGIES POINT-IN-TIME COPY TECHNOLOGIES Generic guidelines & best practices for

More information

AV-004: Administering and Programming with ORACLE

AV-004: Administering and Programming with ORACLE AV-004: Administering and Programming with ORACLE Oracle 11g Duration: 140 hours Introduction: An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins by gaining a much deeper

More information

Oracle Database 11g: RAC Administration Release 2

Oracle Database 11g: RAC Administration Release 2 Oracle University Contact Us: 01-800-919-3027 & 01-800-913-0322 Oracle Database 11g: RAC Administration Release 2 Duration: 4 Days What you will learn This Oracle Database 11g: RAC Administration Release

More information

Oracle Database 11g: Administration Workshop II Release 2

Oracle Database 11g: Administration Workshop II Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop II Release

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Working knowledge of SQL and use of PL/SQL

More information

Using RMAN to restore a database to another server in an ASM environment

Using RMAN to restore a database to another server in an ASM environment Using RMAN to restore a database to another server in an ASM environment It is possible to restore an Oracle 11g database to another server easily in an ASM environment by following the steps below. 1.

More information

Oracle Database 11g: Administration Workshop II DBA Release 2

Oracle Database 11g: Administration Workshop II DBA Release 2 Oracle University Contact Us: +35929238111 Oracle Database 11g: Administration Workshop II DBA Release 2 Duration: 5 Days What you will learn This course takes the database administrator beyond the basic

More information

linux20 (R12 Server) R12.0.4 Single Node SID - TEST linux1 (10gAS Server) Oracle 10gAS (10.1.2.2) with OID SID - asinf server name

linux20 (R12 Server) R12.0.4 Single Node SID - TEST linux1 (10gAS Server) Oracle 10gAS (10.1.2.2) with OID SID - asinf server name Integrate Oracle Applications R12 with Oracle Internet Directory and SSO ----------------------------------------------------------------------------------------- High Level Steps --------------------

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Maximum Availability Architecture. Oracle Best Practices For High Availability

Maximum Availability Architecture. Oracle Best Practices For High Availability MAA / Data Guard 10g Setup Guide Creating a Single Instance Physical Standby for a RAC Primary Oracle Maximum Availability Architecture White Paper April 2006 Maximum Availability Architecture Oracle Best

More information

Oracle R12 Apps DBA Course Contents:

Oracle R12 Apps DBA Course Contents: Oracle R12 Apps DBA Course Contents: Oracle Apps R12 DBA This training will be suitable for clients who have implemented Oracle E-Business Suite Release 12.X. This class room training demonstrates how

More information

Rob Zoeteweij Zoeteweij Consulting

Rob Zoeteweij Zoeteweij Consulting Rob Zoeteweij Zoeteweij Consulting Rob Zoeteweij Working with Oracle technology since 1985 (Oracle 3) Many Oracle DBA, Oracle Development projects Last 6 Years Oracle Expert Services RAC/ASM OEM Grid Control

More information

Managing R12 EBS using OEM with the Application Management and Application Change Management Packs

Managing R12 EBS using OEM with the Application Management and Application Change Management Packs Managing R12 EBS using OEM with the Application Management and Application Change Management Packs John Stouffer john.w.stouffer@gmail.com www.justadba.com John Stouffer Board Member 2010-2011, OAUG Oracle

More information

12. User-managed and RMAN-based backups.

12. User-managed and RMAN-based backups. 12. User-managed and RMAN-based backups. Abstract: A physical backup is a copy of the physical database files, and it can be performed in two ways. The first is through the Recovery Manager (RMAN) tool

More information

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization

Configuring Backup Settings Configuring and Managing Persistent Settings for RMAN Configuring Autobackup of Control File Backup optimization Introducción Objetivos Objetivos del Curso Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting to the Database and the ASM Instance

More information

Advanced Oracle DBA Course Details

Advanced Oracle DBA Course Details Advanced Oracle DBA Course Details By Besant Technologies Course Name Category Venue Advanced Oracle DBA (RAC, ASM, Data guard) Database Administration Besant Technologies No.24, Nagendra Nagar, Velachery

More information

Oracle Recovery Manager 10g. An Oracle White Paper November 2003

Oracle Recovery Manager 10g. An Oracle White Paper November 2003 Oracle Recovery Manager 10g An Oracle White Paper November 2003 Oracle Recovery Manager 10g EXECUTIVE OVERVIEW A backup of the database may be the only means you have to protect the Oracle database from

More information

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue

Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c Recovering a lost /corrupted table from RMAN Backup after user error or application issue Oracle 12c has automated table level recovery using RMAN. If you lose a table after user error or get

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP I

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

More information

ORACLE DATABASE 11G: COMPLETE

ORACLE DATABASE 11G: COMPLETE ORACLE DATABASE 11G: COMPLETE 1. ORACLE DATABASE 11G: SQL FUNDAMENTALS I - SELF-STUDY COURSE a) Using SQL to Query Your Database Using SQL in Oracle Database 11g Retrieving, Restricting and Sorting Data

More information

Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els

Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els Copyright 2011-2013 Dbvisit Software Limited. All Rights Reserved Nov 2013 Executive Summary... 3 Target Audience... 3 Introduction...

More information

11. Configuring the Database Archiving Mode.

11. Configuring the Database Archiving Mode. 11. Configuring the Database Archiving Mode. Abstract: Configuring an Oracle database for backup and recovery can be complex. At a minimum, you must understand the archive process, the initialization parameters

More information

Getting all the pieces: Reliable Backup/Recovery

Getting all the pieces: Reliable Backup/Recovery Getting all the pieces: Reliable Backup/Recovery Part 1: Recovery Manager Part 2: Custom Backup Mark W. Farnham Andy Rivenes Neil Jensen Overview Whether you use Oracle s Recovery Manager product, a third

More information

R12.2 Install/Patch/Maintain Oracle E-Business Suite

R12.2 Install/Patch/Maintain Oracle E-Business Suite Oracle University Contact Us: +90 212 329 6779 R12.2 Install/Patch/Maintain Oracle E-Business Suite Duration: 5 Days What you will learn This class provides training applicable to Oracle E-Business Suite

More information

Oracle Database 10g: Administration Workshop II Release 2

Oracle Database 10g: Administration Workshop II Release 2 ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Administration Workshop II Release 2 Duration: 5 Days What you will learn This course advances your success as an Oracle professional

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2

More information

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore

This appendix describes the following procedures: Cisco ANA Registry Backup and Restore Oracle Database Backup and Restore APPENDIXA This appendix describes the following procedures: Cisco ANA Registry Oracle Database Cisco ANA Registry This section describes the Cisco ANA Registry backup and restore procedure. Overview Provides

More information

Upgrade Oracle EBS to Release 12.2. Presenter: Sandra Vucinic VLAD Group, Inc.

Upgrade Oracle EBS to Release 12.2. Presenter: Sandra Vucinic VLAD Group, Inc. Upgrade Oracle EBS to Release 12.2 Presenter: Sandra Vucinic VLAD Group, Inc. About Speaker Over 20 years of experience with Oracle database, applications, development and administration tools Director,

More information

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP.

The safer, easier way to help you pass any IT exams. Exam : 1Z0-067. Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP. http://www.51- pass.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which two statements are true about scheduling operations in a pluggable database

More information

Oracle 12c Multitenant and Encryption in Real Life. Christian Pfundtner

Oracle 12c Multitenant and Encryption in Real Life. Christian Pfundtner Oracle 12c Multitenant and Encryption in Real Life Christian Pfundtner Christian Pfundtner, DB Masters GmbH Over 20 years of Oracle Database OCA, OCP, OCE, OCM, ACE Our Credo: Databases are our world 4

More information

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode

RMAN What is Rman Why use Rman Understanding The Rman Architecture Taking Backup in Non archive Backup Mode Taking Backup in archive Mode RMAN - What is Rman - Why use Rman - Understanding The Rman Architecture - Taking Backup in Non archive Backup Mode - Taking Backup in archive Mode - Enhancement in 10g For Rman - 9i Enhancement For Rman

More information

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved. Preview of Oracle Database 12c In-Memory Option 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

Recreate Physical Standby Database after Recovery of Primary Database

Recreate Physical Standby Database after Recovery of Primary Database Recreate Physical Standby Database after Recovery of Primary Database In Oracle 11g it is possible to create a Physical Standby Database from the Primary Database using RMAN. Furthermore, the same procedure

More information

ORACLE DATABASE HIGH AVAILABILITY STRATEGY, ARCHITECTURE AND SOLUTIONS

ORACLE DATABASE HIGH AVAILABILITY STRATEGY, ARCHITECTURE AND SOLUTIONS ORACLE DATABASE HIGH AVAILABILITY STRATEGY, ARCHITECTURE AND SOLUTIONS DOAG Nuremberg - 17/09/2013 Kirill Loifman Oracle Certified Professional DBA www: dadbm.com Twitter: @loifmkir ELEMENTS OF HIGH AVAILABILITY

More information

Author A.Kishore http:/www.appsdba.info. 1) Make the directory structure for your custom application files.

Author A.Kishore http:/www.appsdba.info. 1) Make the directory structure for your custom application files. HOW TO INTEGRATE APPLICATIONS RELEASE R12 WITH CUSTOM APPLICATIONS SCHEMA NAME : XXERP TOP NAME : XXERP_TOP Application : XXERP Custom Application Data Group : Standard Request Group : XXERP Request Group

More information

About the Author About the Technical Contributors About the Technical Reviewers Acknowledgments. How to Use This Book

About the Author About the Technical Contributors About the Technical Reviewers Acknowledgments. How to Use This Book About the Author p. xv About the Technical Contributors p. xvi About the Technical Reviewers p. xvi Acknowledgments p. xix Preface p. xxiii About This Book p. xxiii How to Use This Book p. xxiv Appendices

More information

BrightStor ARCserve Backup

BrightStor ARCserve Backup BrightStor ARCserve Backup Support for Oracle Backup and Restore on Windows 64-Bit Platform - 1 - TABLE OF CONTENTS 1. Summary... 3 2. Backup and Restore Process... 3 3. RMAN Command and Script Template...

More information

Oracle E-Business Suite (EBS)

Oracle E-Business Suite (EBS) Oracle E-Business Suite (EBS) What is Oracle Applications/Oracle E-Business Suite? To facilitate big businesses, Oracle Corporation have created collection of software in the category of ERP (Enterprise

More information

Ultimate Guide to Oracle Storage

Ultimate Guide to Oracle Storage Ultimate Guide to Oracle Storage Presented by George Trujillo George.Trujillo@trubix.com George Trujillo Twenty two years IT experience with 19 years Oracle experience. Advanced database solutions such

More information

HOW TO. RMAN Restore for Standby 10gR2

HOW TO. RMAN Restore for Standby 10gR2 Author: Martin Decker Date: 8.10.2008 Subject: RMAN Restore for Standby 10gR2 HOW TO RMAN Restore for Standby 10gR2 1 Preparations The existing database MDDB1 should be duplicated as Standby Database MDSTB1

More information

How to Best Configure, Size, and Monitor the Oracle Database Fast Recovery Area

How to Best Configure, Size, and Monitor the Oracle Database Fast Recovery Area ORACLE PRODUCT LOGO How to Best Configure, Size, and Monitor the Oracle Database Fast Recovery Area Cris Pedregal, Oracle Presenting with Andy Colvin 1 Copyright 2011, Oracle and/or its affiliates. All

More information

Oracle Database 11g R1 & R2: New Features for Administrators

Oracle Database 11g R1 & R2: New Features for Administrators Oracle Database 11g R1 & R2: New Features for Administrators Summary This Oracle 11g course will assist experienced Oracle database administrators to quickly learn the new features and concepts associated

More information

Oracle Database 12c: Admin, Install and Upgrade Accelerated

Oracle Database 12c: Admin, Install and Upgrade Accelerated Oracle University Contact Us: + 38516306373 Oracle Database 12c: Admin, Install and Upgrade Accelerated Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers

Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers An Oracle White Paper January 200 Setup Flashback Database on Data Guard Physical Standby Database for SAP Customers Database Version : g Release 2 Preface... 2 Requirements... 4 Aim of the document...

More information

Oracle Recovery Manager

Oracle Recovery Manager 1 sur 6 05/08/2014 14:17 ORACLE.COM TECHNOLOGY NETWORK PARTNERS STORE SUPPORT (Sign In / Register for a free DownloadsDocumentation Discussion Forums Articles Sample Code Training RSS Resources For PRODUCT

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

SnapManager for Oracle 2.2. Anand Ranganathan Product & Partner Engineer (PPE)

SnapManager for Oracle 2.2. Anand Ranganathan Product & Partner Engineer (PPE) SnapManager for Oracle 2.2 Anand Ranganathan Product & Partner Engineer (PPE) Agenda Introduction Key Features Concepts Platform & Protocol Support Installation & Configuration New in Version 2.2 Coming

More information

Zero Downtime Backup solution for Oracle10g

Zero Downtime Backup solution for Oracle10g Storage Grid Seminar Oktober 2005 Frankfurt, München, Hamburg Zero Downtime Backup solution for Oracle10g Jaime Blasco HP/Oracle CTC (Cooperative Technology Center) EMEA Competence Center 2004 Hewlett-Packard

More information

ORACLE DBA 11G TRAINING

ORACLE DBA 11G TRAINING ORACLE DBA 11G TRAINING DURATION 40hrs AVAILABLE BATCHES WEEKDAYS (7.00AM TO 8.00AM) & WEEKENDS (10AM TO 1PM) MODE OF TRAINING AVAILABLE ONLINE INSTRUCTOR LED CLASSROOM TRAINING (MARATHAHALLI, BANGALORE)

More information

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows:

If you have not multiplexed your online redo logs, then you are only left with incomplete recovery. Your steps are as follows: How to Recover lost online redo logs? Author A.Kishore If you lose the current online redo log, then you will not be able to recover the information in that online redo log. This is one reason why redo

More information

Configuring Backup Settings. Copyright 2009, Oracle. All rights reserved.

Configuring Backup Settings. Copyright 2009, Oracle. All rights reserved. Configuring Backup Settings Objectives After completing this lesson, you should be able to: Use Enterprise Manager to configure backup settings Enable control file autobackup Configure backup destinations

More information

Oracle Database 11g: New Features for Administrators DBA Release 2

Oracle Database 11g: New Features for Administrators DBA Release 2 Oracle Database 11g: New Features for Administrators DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: New Features for Administrators DBA Release 2 training explores new change

More information

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices Oracle Backup and Recovery Best Practices Dell Compellent Storage Center Dell Compellent Technical Best Practices ii Document Revision Table 1. Revision History Date Revision Description 6/15/2011 A Initial

More information

Oracle Data Guard for High Availability and Disaster Recovery

Oracle Data Guard for High Availability and Disaster Recovery Oracle Data Guard for High Availability and Disaster Recovery John Zhong Senior Technical Specialist Global Database Management Group Citigroup and Vice President of American DBAOnline John_j_zhong@yahoo.com

More information

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW

D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW D12CBR Oracle Database 12c: Backup and Recovery Workshop NEW What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your own recovery requirements. You'll

More information

Oracle 11g DBA Training Course Content

Oracle 11g DBA Training Course Content Oracle 11g DBA Training Course Content ORACLE 10g/11g DATABASE ADMINISTRATION CHAPTER1 Important Linux commands Installing of Redhat Linux as per oracle database requirement Installing of oracle database

More information

Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server

Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server This Installation Guide is intended to augment the Oracle and Novell documentation for

More information

Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.com www.nutechtraining.

Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.com www.nutechtraining. Nutech Computer Training Institute 1682 E. Gude Dr. #102 Rockville, MD. 20850 Tel: 301-610-9300 Web:Nutechtraining.com www.nutechtraining.com Total Hours: 28 hrs Tuition Fee: $2000 Registration Fee: $30

More information

Oracle Data Guard. Caleb Small Caleb@Caleb.com. Puget Sound Oracle Users Group Education Is Our Passion

Oracle Data Guard. Caleb Small Caleb@Caleb.com. Puget Sound Oracle Users Group Education Is Our Passion Oracle Data Guard Caleb Small Caleb@Caleb.com Outline Overview Planning a DataGuard Installation Architecture Setting up DataGuard Managing & Monitoring Crash & Burn Demo Overview Data Guard Concepts Causes

More information

Oracle E-Business Suite Release 11i upgrade to R12.1 and platform migration guide: Oracle Sun SPARC-based server to HP ProLiant servers

Oracle E-Business Suite Release 11i upgrade to R12.1 and platform migration guide: Oracle Sun SPARC-based server to HP ProLiant servers Oracle E-Business Suite Release 11i upgrade to R12.1 and platform migration guide: Oracle Sun SPARC-based server to HP ProLiant servers Technical white paper Table of contents Executive summary... 2 Introduction...

More information

Oracle Data Recovery Advisor

Oracle Data Recovery Advisor Infrastructure at your Service. Oracle Data Recovery Advisor Infrastructure at your Service. About me David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com www.dbi-services.com

More information

Oracle Database Cross Platform Migration Lucy Feng, DBAK

Oracle Database Cross Platform Migration Lucy Feng, DBAK Delivering Oracle Success Oracle Database Cross Platform Migration Lucy Feng, DBAK RMOUG QEW November 19, 2010 Business Requirements Migrate all Oracle databases to IBM zseries based Linux The database

More information

Workflow Templates Library

Workflow Templates Library Workflow s Library Table of Contents Intro... 2 Active Directory... 3 Application... 5 Cisco... 7 Database... 8 Excel Automation... 9 Files and Folders... 10 FTP Tasks... 13 Incident Management... 14 Security

More information

TOP FIVE REASONS WHY CUSTOMERS USE EMC AND VMWARE TO VIRTUALIZE ORACLE ENVIRONMENTS

TOP FIVE REASONS WHY CUSTOMERS USE EMC AND VMWARE TO VIRTUALIZE ORACLE ENVIRONMENTS TOP FIVE REASONS WHY CUSTOMERS USE EMC AND VMWARE TO VIRTUALIZE ORACLE ENVIRONMENTS Leverage EMC and VMware To Improve The Return On Your Oracle Investment ESSENTIALS Better Performance At Lower Cost Run

More information

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites

D78850GC10. Oracle Database 12c Backup and Recovery Workshop. Summary. Introduction. Prerequisites D78850GC10 Oracle 12c and Recovery Workshop Summary Duration Vendor Audience 5 Days Oracle Data Warehouse Administrators, Administrators, Support Engineers, Technical Administrators, Technical Consultants

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

Oracle TDE Tablespace Encryption

Oracle TDE Tablespace Encryption Best Practice Document Version: 1.0 2015-02-04 Configuration Guide Document History Version Date Change 1.0 Document creation 2 2015 SAP SE or an SAP affiliate company. All rights reserved.

More information

<Insert Picture Here> Managing Storage in Private Clouds with Oracle Cloud File System OOW 2011 presentation

<Insert Picture Here> Managing Storage in Private Clouds with Oracle Cloud File System OOW 2011 presentation Managing Storage in Private Clouds with Oracle Cloud File System OOW 2011 presentation What We ll Cover Today Managing data growth Private Cloud definitions Oracle Cloud Storage architecture

More information

Exadata and Database Machine Administration Seminar

Exadata and Database Machine Administration Seminar Oracle University Contact Us: 1.800.529.0165 Exadata and Database Machine Administration Seminar Duration: 2 Days What you will learn The first section of this course introduces you to Exadata Storage

More information

Oracle 11g New Features - OCP Upgrade Exam

Oracle 11g New Features - OCP Upgrade Exam Oracle 11g New Features - OCP Upgrade Exam This course gives you the opportunity to learn about and practice with the new change management features and other key enhancements in Oracle Database 11g Release

More information

Automatic Data Optimization

Automatic Data Optimization Automatic Data Optimization Saving Space and Improving Performance! Erik Benner, Enterprise Architect 1 Who am I? Erik Benner @erik_benner TalesFromTheDatacenter.com Enterprise Architect Ebenner@mythics.com

More information

SharePlex for Oracle How to replicate databases. Jeffrey Surretsky Solutions Architect

SharePlex for Oracle How to replicate databases. Jeffrey Surretsky Solutions Architect SharePlex for Oracle How to replicate databases Jeffrey Surretsky Solutions Architect Highlights Overview: reasons for migration Traditional data migration methods Drawbacks Data migrations using log-based

More information

Real Application Testing. Fred Louis Oracle Enterprise Architect

Real Application Testing. Fred Louis Oracle Enterprise Architect Real Application Testing Fred Louis Oracle Enterprise Architect The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

IBM FileNet Image Services

IBM FileNet Image Services IBM FileNet Image Services Version 4.1 Microsoft Cluster Server Installation and Upgrade Procedures for Windows Server GC31-5531-01 IBM FileNet Image Services Version 4.1 Microsoft Cluster Server Installation

More information

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com

Why Standardize on Oracle Database 11g Next Generation Database Management. Thomas Kyte http://asktom.oracle.com Why Standardize on Oracle Database 11g Next Generation Database Management Thomas Kyte http://asktom.oracle.com Top Challenges Performance Management Change Management Ongoing Administration Storage Backup

More information

Oracle Database Backups and Disaster Recovery @ Autodesk

Oracle Database Backups and Disaster Recovery @ Autodesk Oracle Database Backups and Disaster Recovery @ Autodesk Alan Williams Database Design Engineer Who We Are Autodesk software, suites, and cloud technology help customers design, visualize, and simulate

More information

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved.

Restore and Recovery Tasks. Copyright 2009, Oracle. All rights reserved. Restore and Recovery Tasks Objectives After completing this lesson, you should be able to: Describe the causes of file loss and determine the appropriate action Describe major recovery operations Back

More information

Oracle Backup & Recovery

Oracle Backup & Recovery ORACLG«Oracle Press Oracle Backup & Recovery Rama Velpuri Osborne McGraw-Hill Berkeley New York St. Louis San Francisco Auckland Bogota Hamburg London Madrid Mexico City Milan Montreal New Delhi Panama

More information

Oracle Database 11g: New Features for Administrators

Oracle Database 11g: New Features for Administrators Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: New Features for Administrators Duração: 5 Dias Objetivos do Curso This course gives students the opportunity to learn about-and practice

More information

How to Migrate your Database to Oracle Exadata. Noam Cohen, Oracle DB Consultant, E&M Computing

How to Migrate your Database to Oracle Exadata. Noam Cohen, Oracle DB Consultant, E&M Computing How to Migrate your Database to Oracle Exadata Noam Cohen, Oracle DB Consultant, E&M Computing Who am I Working with Oracle Since 2000 Versions 8.0 11g Consulting on all areas from Infrastructure to Application

More information

Best Practices for Oracle 11g Backup and Recovery using Oracle Recovery Manager (RMAN) and Dell EqualLogic Snapshots

Best Practices for Oracle 11g Backup and Recovery using Oracle Recovery Manager (RMAN) and Dell EqualLogic Snapshots Dell EqualLogic Best Practices Series Best Practices for Oracle 11g Backup and Recovery using Oracle Recovery Manager (RMAN) and Dell EqualLogic Snapshots A Dell Technical Whitepaper Storage Infrastructure

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

Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack

Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack By Kai Yu As a part of the Oracle Enterprise Manager s lifecycle management solutions, the Oracle Enterprise Manager Provisioning

More information

IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE

IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE White Paper IBM TSM DISASTER RECOVERY BEST PRACTICES WITH EMC DATA DOMAIN DEDUPLICATION STORAGE Abstract This white paper focuses on recovery of an IBM Tivoli Storage Manager (TSM) server and explores

More information

Oracle Database 10g: Backup and Recovery 1-2

Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-3 What Is Backup and Recovery? The phrase backup and recovery refers to the strategies and techniques that are employed

More information

Top 10 Things You Always Wanted to Know About Automatic Storage Management But Were Afraid to Ask

Top 10 Things You Always Wanted to Know About Automatic Storage Management But Were Afraid to Ask Top 10 Things You Always Wanted to Know About Automatic Storage Management But Were Afraid to Ask Nitin Vengurlekar RAC/ASM Engineering Grid Product Strategy Agenda ASM Overview 2

More information