9i RAC: Manual Backup and Recovery Shankar Govindan

Size: px
Start display at page:

Download "9i RAC: Manual Backup and Recovery Shankar Govindan"

Transcription

1 9i RAC: Manual Backup and Recovery Shankar Govindan Introduction When we plan to move a large database or a heavily used OLTP database to a cluster setup, to get enough mileage from the horizontal scaling of 9i RAC, we normally have lots of questions on how we are going to handle various database maintenance that are traditionally done, how we are going to setup the same and what changes or tools need to be in place to handle RAC. In this paper we are going to look at one of the important administration jobs, the backing up of a 9i RAC. We will also look at how we can recover from a simple data file loss or the other extreme, a Disaster recovery. Backup Method We can use RMAN to backup and recover a database, but if the database is huge or the backup times are more than 5 hours, then precious time is lost. Sites that have large databases can look at Shadow copy. We use Hitachi RAID system and use Hitachi Shadow copy. (For more inmation on the Hitachi Shadow copy options, you can visit their website). The backup is done in the traditional manner: tablespace is put in the begin backup mode, the database files are copied and then the tablespace is put back in the end backup mode. The way the shadow backup works, is by having a media server which has a set of disks. The disks are attached to the production server and synced (syncing of a terabyte takes 6 hours), the syncing can happen any time. Once, the media server disks are in sync with the production server, we fire a script which will put all the tablespaces in backup mode. The sync mirror disk is then sliced off the production server. This takes less than 3 minutes. The tablespaces are then put back in the end backup mode. The backup is now complete and takes only 3 minutes. The mirror disk is then copied over to tape offline using the media server. We can also sync the backup archive log directories and copy them over to tape. Setting up environment Manual Backup Let s see how we can do a traditional backup in a 9i RAC environment. As we know that there are multiple nodes in a RAC setup, all pointing to a single database. But the backup of database should be initiated from a single node, usually the primary node. The primary node is the one you setup first and do most of the maintenance from that node. The first thing to do is setup your profile in such a way that when you login as the owner of the database, in our case usually ORACLE, your environment is setup correctly. We have to remember that the database name, let s say RPTQ in our case is only used connecting to the database by the clients (this can also be masked/wrapped by using alias in tnsnames). When we login locally to one of the nodes, we have to set our ORACLE_SID to the instance name and not to the database name.

2 Let s say we have a two node(ljcqs034 and LJCQS035) instance called rptq1 and rptq2, pointing to a database RPTQ ( remember that the SID s are case sensitive in Unix and it is better to set them all up in the lower case to avoid confusion) as shown in the figure below. When we login to server LJCQS034 hosting instance rptq1, then we set our ORACLE_SID pointing to rptq1( presuming our ORACLE_HOME is shared or point the ORACLE_HOME to the instance rptq1 s oracle home). We will execute all the maintenance jobs as a DBA locally and setup our environment a single node, the primary node, to execute all our automatic maintenance and monitoring scripts. Your cron the database will run in the primary node, although you can copy over the same cron to the second node failover and activate it manually. Setting up your.profile a single node will be as shown below: # # If you are oracle and logging in one of the instance, then set that specific env # if [ "`/usr/ucb/whoami`" = "oracle" ] && [ "`hostname`" = "LJCQS034" ]; then../rptq1.env else../rptq2.env fi

3 You can include the same lines in your second node s.profile. The env script rptq1.env should exist and will look like: #!/bin/ksh # # # filename: /dba/etc/rptq1.env # # Created by : Shankar Govindan # Dated : 23-July-2003 # # # History : # # # If TWO_TASK is set, unset it if [ -n "$TWO_TASK" ]; then unset TWO_TASK fi export LD_LIBRARY_PATH=/usr/lib:/usr/ccs/lib:/usr/ucblib:/usr/dt/lib:/lib:/sv03/sw/oracle/rptqdb /9.2.0/lib: /sv03/sw/oracle/rptqdb/9.2.0/lib32:/sv03/sw/oracle/rptqdb/9.2.0/jdbc/lib:. export NLS_DATE_FORMAT=DD-MON-RR export NLS_DATE_LANGUAGE=AMERICAN export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1 export NLS_NUMERIC_CHARACTERS=., export NLS_SORT=BINARY export ORACLE_BASE=/sv03 export ORACLE_HOME=/sv03/sw/oracle/rptqdb/9.2.0 export ORACLE_SID=rptq1 export ORACLE_TERM=vt100 unset ORAENV_ASK; export ORAENV_ASK export ORA_NLS32=/sv03/sw/oracle/rptqdb/9.2.0/ocommon/nls/admin/data export ORA_NLS33=/sv03/sw/oracle/rptqdb/9.2.0/ocommon/nls/admin/data export ORA_NLS=/sv03/sw/oracle/rptqdb/9.2.0/ocommon/nls/admin/data export PATH=/sv03/sw/oracle/rptqdb/9.2.0/bin:/bin:/usr/bin:/usr/sbin:/usr/ccs/bin:/usr/ucb:/opt/ local/bin: /opt/hpnp/bin:/usr/local/bin:/usr/openwin/bin:/dba/bin:/dba/sbin:. export TNS_ADMIN=/sv03/sw/oracle/rptqdb/9.2.0/network/admin export UDUMP=/sv03/oracle/admin/rptq/udump export PFILE=/sv03/oracle/admin/rptq/pfile export BDUMP=/sv03/oracle/admin/rptq/bdump If you need to automate the backup and if the scripts are run as a cron, then you need to source the ORACLE_SID from somewhere, either from a file or from the Oratab. The oratab entry a 9i RAC instance will have the instance name and not the database name. For example we if we are initiating the backup from the primary node, then the oratab of the primary node will have: rptq1:/sv03/sw/oracle/rptqdb/9.2.0:n The secondary node or the second node will have rptq2 in the oratab. Manual Backup of data files The backup of the database is initiated from the primary node or primary instance. We don t have to setup anything or initiate anything from the secondary node or any other nodes that are pointing to the database. Login to the primary instance as a user who has the privilege to backup the datafiles and initiate the backup commands. Alter tablespace tablespace_name begin backup; Copy datafiles to backup directory/server and then end the tablespace backup. Alter tablespace tablespace_name end backup;

4 We know that we need to do this all the tablespaces. If you are using the shadow copy concept like we do large databases, then we need to put all the tablespaces into backup mode at once and then break the mirror disk. We then put all the tablespace to end backup mode. The mirror copy goes to tape backup offline. Manual Backup of archive logs The archive logs that are generated at the time of backup should get into the backup set a meaningful recovery. Incase of disaster and we need to recover to the last backup, then the last few archive logs are required to bring the database to some consistent state a cancel based recovery. In a RAC environment we setup the archive mat to include a %t. The %t will identify which thread or instance that generated the archivelog. log_archive_mat = arch%s_%t.arc Traditionally we ce a log switch bee and after a backup to get the timestamps in on the data files and to push the last few logs to be archived, so they get into the tape as part of the backup set. We normally execute, Alter system checkpoint; Alter system switch logfile; In a RAC environment, this command will only switch the logfile a single instance. We have to remember that there are archive logs generated by the other instances too, and these archives need to be part of the backup set any meaningful recovery. To ce a log switch and push the logs to archive all the instances, we need to execute, Alter system archive log current; Alter system archive log current; Once these archivelogs are pushed and visible, they are then compressed/moved to the backup archivelog directory and are part of the backup. If you have setup shadow copy, then, the backup archivelog directory can also be synced and mirrored, it can then be part of the backup set when the mirror is broken after the data files backup. Manual backup of server config file There is a server config file that stores all the database and instance inmation when the RAC setup is created. The name of the file is srvm.dbf. There is also a file in the /var/opt/oracle called srvconfig.loc oracle ljcqs034:=> pwd /var/opt/oracle oracle ljcqs034:=> ls -ltr total 8 -rw-r--r-- 1 oracle dba -rw-r--r-- 1 oracle dba -rw-rw-r-- 1 oracle other 47 Aug 18 16:47 srvconfig.loc 123 Aug 26 13:18 orainst.loc 812 Aug 29 18:35 oratab The srvconfig.loc file contains the pointer to the location of the srvm.dbf. srvconfig_loc=/sv00/db00/oradata/rptq/srvm.dbf

5 We have to make sure that this file is in the oracle dbf file directory location, so that it gets backed up periodically. Incase you are not shadow copying your data files, then you need to back this file up as part of your backup procedure. (You can always work around the loss of this file, by recreating the RAC setup once again using the srvctl commands). Recovery from a lost data file Let s try to simulate the loss of a data file and try to recover the same in a RAC environment. Create a tablespace SQL>create tablespace testrac datafile '/Ora_base/db11/oradata/drac/testrac_01.dbf' size 100M extent management local unim size 4M SEGMENT SPACE MANAGEMENT AUTO; SQL> alter tablespace testrac add datafile '/Ora_base/db11/oradata/drac/testrac_02.dbf' size 100M; Tablespace altered. SQL> select file_name,bytes from dba_data_files where tablespace_name like 'TESTRAC'; FILE_NAME BYTES /Ora_base/db11/oradata/drac/testrac_01.dbf /Ora_base/db11/oradata/drac/testrac_02.dbf SQL> alter user sxgovind default tablespace testrac; User altered. SQL> connect sgovind Create some tables and load data SQL> create table ruby as select * from dba_objects; Table created. SQL> create table hammerhead as select * from dba_tables; Table created. SQL> select segment_name,segment_type,tablespace_name from dba_segments where tablespace_name like 'TESTRAC'; SEGMENT_NAME SEGMENT_TYPE TABLESPACE_NAME RUBY TABLE TESTRAC HAMMERHEAD TABLE TESTRAC SQL>alter tablespace TESTRAC begin backup;

6 Backup the tablespace SQL>select d.name,b.status,b.time from v$datafile d,v$backup b where d.file#=b.file# and b.status = 'ACTIVE'; NAME STATUS TIME /Ora_base/db11/oradata/drac/testrac_01.dbf ACTIVE 22-MAY-03 /Ora_base/db11/oradata/drac/testrac_02.dbf ACTIVE 22-MAY-03 oracle ljcqs097:=> cp testrac_01.dbf $HOME SQL> alter tablespace testrac end backup; Tablespace altered. Remove data file associated with the tablespace oracle ljcqs097:=> rm testrac_01.dbf SQL> select file_name,bytes from dba_data_files where tablespace_name like 'TESTRAC'; select file_name,bytes from dba_data_files where tablespace_name like 'TESTRAC' * ERROR at line 1: ORA-01116: error in opening database file 64 ORA-01110: data file 64: '/Ora_base/db11/oradata/drac/testrac_01.dbf' ORA-27041: unable to open file SVR4 Error: 2: No such file or directory Additional inmation: 3 Recover data file associated with the tablespace SQL> alter database datafile '/Ora_base/db11/oradata/drac/testrac_01.dbf' offline; Database altered. oracle ljcqs098:=> cp testrac_01.dbf /Ora_base/db11/oradata/drac SQL> alter database recover datafile '/Ora_base/db11/oradata/drac/testrac_01.dbf'; alter database recover datafile '/Ora_base/db11/oradata/drac/testrac_01.dbf' * ERROR at line 1: ORA-00279: change generated at 05/22/ :01:09 needed ORA-00289: suggestion : /shared/arch/oradata/drac/arch/arch_2_12.arc ORA-00280: change is in sequence #12 SQL> ALTER DATABASE RECOVER CANCEL;

7 SQL> recover datafile '/Ora_base/db11/oradata/drac/testrac_01.dbf'; ORA-00279: change generated at 05/22/ :01:09 needed ORA-00289: suggestion : /shared/arch/oradata/drac/arch/arch_2_12.arc ORA-00280: change is in sequence #12 AUTO ORA-00279: change generated at 05/22/ :06:13 needed ORA-00289: suggestion : /shared/arch/oradata/drac/arch/arch_2_13.arc ORA-00280: change is in sequence #13 ORA-00278: log file '/shared/arch/oradata/drac/arch/arch_2_12.arc' no longer needed this recovery Log applied. Media recovery complete. SQL> alter database datafile '/Ora_base/db11/oradata/drac/testrac_01.dbf' online; Database altered. SQL> select file_name,bytes from dba_data_files where tablespace_name like 'TESTRAC'; FILE_NAME BYTES /Ora_base/db11/oradata/drac/testrac_01.dbf /Ora_base/db11/oradata/drac/testrac_02.dbf Done. Recovery from a Disaster When we recover a lost data file, we recover them online and both the instances of the RAC environment are up and running. We only offline the data file and try to recover the data file from a backup, the same way we do with a non-rac setup. Let s see what happens at the extreme end, when we have a disaster and we need to bring the last backup from tape and recover to a point in time or apply the available archive logs and do a cancel based recovery. We need to remember that we cannot bring both the instances of the database up. We need to mount the database in a single instance mode and then initiate a recovery. Once the recovery is complete we can bring all the other nodes up and running. We don t have to do any changes to the environment or the parameter files.

8 Verify the srvm.dbf file exists in the location and is not overwritten by the copy over of datafiles. Check the node visibility and start GSD Daemon to check RAC config is okay. oracle ljcqs034:=> lsnodes ljcqs034 ljcqs035 oracle ljcqs034:=> gsdctl stat GSD is not running on the local node oracle ljcqs035:=> gsdctl stat GSD is not running on the local node oracle ljcqs034:=> gsdctl start Failed to start GSD on local node We have to make sure that we have the server configured correctly and the GSD daemon is up and running. In case the srvm.dbf file is lost and the GSD does not come up, then recreate the RAC configuration as explained below in the Recovery of srvconfig inmation section of this note. Once the gsd daemon is up and running, we startup the database in a single instance mode. Login to the primary node and verify the ORACLE_SID, oracle ljcqs034:=> echo $ORACLE_SID rptq1 oracle ljcqs032:=> sqlplus /nolog SQL*Plus: Release Production on Wed Oct 8 09:24: Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. SQL> connect / as sysdba Connected to an idle instance. SQL> startup nomount; SQL> recover database using backup controlfile until cancel; ORA-00279: change generated at 08/16/ :29:16 needed thread 1 ORA-00289: suggestion : /sv04/data/arch/rptq/arch703203_1.arc ORA-00280: change thread 1 is in sequence # ORA-00279: change generated at 08/16/ :29:16 needed It does not suggest what archivelog file to apply. You need to choose the latest one that match the timestamp of the one applied thread 1 and start the apply from there.

9 /sv04/data/arch/rptq/arch3636_2.arc ORA-00279: change generated at 08/16/ :35:50 needed thread 1 ORA-00289: suggestion : /sv04/data/arch/rptq/arch703204_1.arc ORA-00280: change thread 1 is in sequence # ORA-00278: log file '/sv04/data/arch/rptq/arch703203_1.arc' no longer needed this recovery This time it suggests what file is required. The first time seems to be an issue, once it applies the first right archive log file, it then prompts more. ORA-00279: change generated at 08/16/ :07:38 needed ORA-00289: suggestion : /sv04/data/arch/rptq/arch3637_2.arc ORA-00280: change is in sequence #3637 ORA-00278: log file '/sv04/data/arch/rptq/arch3636_2.arc' no longer needed this recovery ORA-00279: change generated at 08/16/ :12:27 needed ORA-00289: suggestion : /sv04/data/arch/rptq/arch3638_2.arc ORA-00280: change is in sequence #3638 ORA-00278: log file '/sv04/data/arch/rptq/arch3637_2.arc' no longer needed this recovery ORA-00279: change generated at 08/16/ :15:44 needed ORA-00289: suggestion : /sv04/data/arch/rptq/arch3639_2.arc ORA-00280: change is in sequence #3639 ORA-00278: log file '/sv04/data/arch/rptq/arch3638_2.arc' no longer needed this recovery CANCEL Media recovery cancelled. SQL> alter database open resetlogs; Database altered.

10 If your database is setup to use the tempfile temporary tablespace, then you need to recreate them. ALTER TABLESPACE TEMP ADD TEMPFILE '/sv00/db13/oradata/rptq/temp_01.dbf' SIZE 2044M REUSE AUTOEXTEND OFF; ALTER TABLESPACE TEMP ADD TEMPFILE '/sv00/db13/oradata/rptq/temp_02.dbf' SIZE 2044M REUSE AUTOEXTEND OFF; ALTER TABLESPACE TEMP ADD TEMPFILE '/sv00/db13/oradata/rptq/temp_03.dbf' SIZE 2044M REUSE AUTOEXTEND OFF; ALTER TABLESPACE TEMP ADD TEMPFILE '/sv00/db13/oradata/rptq/temp_04.dbf' SIZE 2044M REUSE AUTOEXTEND OFF; ALTER TABLESPACE TEMP ADD TEMPFILE '/sv00/db13/oradata/rptq/temp_05.dbf' SIZE 2044M REUSE AUTOEXTEND OFF; Recovery from loss of srvconfig inmation If you loose the srvm.dbf file and the GSD daemon does not come up, then its time to recreate the srvm.dbf, by recreating the server configuration. oracle ljcqs098:=> which gsd /shared/oracle/product/9.2.0/bin/gsd oracle ljcqs098:=> cd $ORACLE_HOME oracle ljcqs032:=> gsdctl start Failed to start GSD on local node The following command will wipe out all the previous inmation that existed in the srvm.dbf file. Once you setup the environment, you should not execute the below command again. oracle ljcqs032:=> srvconfig -init f oracle.ops.mgmt.rawdevice.rawdeviceexception: PRKR-1025 : file /var/opt/oracle/srvconfig.loc does not contain property srvconfig_loc at java.lang.throwable.<init>(compiled Code) at java.lang.exception.<init>(compiled Code) at oracle.ops.mgmt.rawdevice.rawdeviceexception.<init>(compiled Code) at oracle.ops.mgmt.rawdevice.rawdeviceutil.getdevicename(compiled Code) at oracle.ops.mgmt.rawdevice.rawdeviceutil.<init>(compiled Code) at oracle.ops.mgmt.rawdevice.rawdeviceutil.main(compiled Code) The file srvm.dbf was not part of the backup and hence was not recovered. The file does not exist and the srvconfig command does point out the same.

11 Work around is to create a new file and update the /var/opt/oracle/srvconfig.loc file of the new location of the srvm.dbf file. oracle ljcqs032:=>touch /sv00/db00/oradata/rpt1/srvm.dbf oracle ljcqs032:=>chmod 755 srvm.dbf oracle ljcqs032:=>cd /var/opt/oracle oracle ljcqs032:=>vi srvconfig.log and add this line and save. srvconfig_loc=/sv00/db00/oradata/rpt1/srvm.dbf Now start the GSD daemon and then start adding the database and instance inmation to the srvm.dbf file. oracle ljcqs098:=> gsdctl start Successfully started GSD on local node oracle ljcqs097:=> srvctl add database -d rptq -o /shared/oracle/product/9.2.0 oracle ljcqs098:=> srvctl add instance -d rptq -i rptq1 -n ljcqs097 oracle ljcqs098:=> srvctl add instance -d rptq -i rptq2 -n ljcqs098 Check if the configuration has been setup correctly. oracle ljcqs097:=> srvctl config rptq oracle ljcqs097:=> srvctl config database -d rptq ljcqs097 rptq1 /shared/oracle/product/9.2.0 ljcqs098 rptq2 /shared/oracle/product/9.2.0 Shankar Govindan works as a Sr. Oracle DBA at CNF Inc, Portland, Oregon. Shankar Govindan is Oracle Certified 7, 8 and 8I; you can contact him at shankargovindan@yahoo.com. Note: The above info as usual is of my individual tests and opinions and has nothing to do with the company I work or represent.

Recovering Oracle Databases

Recovering Oracle Databases CHAPTER 20 Recovering Oracle Databases In this chapter you will learn how to Recover from loss of a controlfile Recover from loss of a redo log file Recover from loss of a system-critical datafile Recover

More information

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

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

More information

Disaster Recovery: Restore Database from One Server to another Server when Different Location

Disaster Recovery: Restore Database from One Server to another Server when Different Location Disaster Recovery: Restore Database from One Server to another Server when Different Location Mohamed Azar Oracle DBA http://mohamedazar.wordpress.com 1 Mohamed Azar http://mohamedazar.wordpress.com Step

More information

Steps how to duplicate a database to a new machine. Version 10gR2

Steps how to duplicate a database to a new machine. Version 10gR2 Steps how to duplicate a database to a new machine. Version 10gR2 First take a fresh backup of the target database set the ORACLE_* variables If the databse is running in noarchivelog mode, shut it down

More information

Setting Up Oracle for ISC

Setting Up Oracle for ISC APPENDIXA This appendix describes how to set up an Oracle Database 10g, Enterprise Edition Release 10.2.0.1.0-64 bit Production server that works with Cisco IP Solution Center (ISC). This appendix is written

More information

Setting Up Oracle for Prime Fulfillment

Setting Up Oracle for Prime Fulfillment APPENDIXA This appendix describes how to set up an Oracle Database 11g, Enterprise Edition Release 11.2.0.1.0-64 bit Production server that works with Cisco Prime Fulfillment. This appendix is written

More information

NEC istorage Series Disk Array Guide for Oracle Storage Compatibility Program Snapshot Technologies

NEC istorage Series Disk Array Guide for Oracle Storage Compatibility Program Snapshot Technologies NEC istorage Series Disk Array Guide for Oracle Storage Compatibility Program Snapshot Technologies is-wp-01-002 Rev. 1.00 Aug. 2001 NEC Solutions NEC Corporation Copyright 2001 NEC Corporation. All rights

More information

ASM migration process

ASM migration process Management on Dell/EMC Storage Arrays By Zafar Mahmood, Uday Datta Shet, and Bharat Sajnani ASM migration process The process for migrating an Oracle Real Application Clusters (RAC) database from Oracle

More information

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

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management Executive Overview... 3 Introduction... 3 Database

More information

Tablespaces and Datafiles

Tablespaces and Datafiles C H A P T E R 4 Tablespaces and Datafiles As you saw in Chapter 2, when you create a database, typically five tablespaces are created when you execute the CREATE DATABASE statement: SYSTEM SYSAUX UNDO

More information

Redefining Data Protection. Title Page. User s Guide. for the NetVault:Backup APM for Oracle. APM Version 5.1 OAG

Redefining Data Protection. Title Page. User s Guide. for the NetVault:Backup APM for Oracle. APM Version 5.1 OAG Redefining Data Protection Title Page User s Guide for the NetVault:Backup APM for Oracle APM Version 5.1 OAG-101-5.1-EN-01 01/30/08 Copyrights NetVault:Backup - User s Guide for the NetVault:Backup APM

More information

Tibero Backup & Recovery Guide

Tibero Backup & Recovery Guide Tibero Backup & Recovery Guide Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2014 TIBERO Co., Ltd. All Rights Reserved. 5, Hwangsaeul-ro 329beon-gil, Bundang-gu, Seongnam-si,

More information

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover??

How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? How to Recover the lost current control file, or the current control file is inconsistent with files that you need to recover?? If it is multiplexed then replace the lost one with the available one else

More information

inside: THE MAGAZINE OF USENIX & SAGE August 2003 volume 28 number 4 SYSADMIN Hoskins: Oracle Hot Backup

inside: THE MAGAZINE OF USENIX & SAGE August 2003 volume 28 number 4 SYSADMIN Hoskins: Oracle Hot Backup THE MAGAZINE OF USENIX & SAGE August 2003 volume 28 number 4 inside: SYSADMIN Hoskins: Hot Backup & The Advanced Computing Systems Association & The System Administrators Guild hot backup Introduction

More information

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

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

More information

White Paper. Using SVA SnapShot With Oracle June, 2001 TL-ENG-PRD-0477-A1 TL-ENG-PRD-0477-A01

White Paper. Using SVA SnapShot With Oracle June, 2001 TL-ENG-PRD-0477-A1 TL-ENG-PRD-0477-A01 White Paper Using SVA SnapShot With Oracle June, 2001 TL-ENG-PRD-0477-A1 TL-ENG-PRD-0477-A01 Table of Contents 1 Abstract... 5 2 Understanding SnapShot... 6 2.1 How Does SnapShot Work?...6 3 Architecture

More information

Redefining Data Protection. Title Page. User s Guide. for the NetVault: Backup APM for Oracle. APM Version 5.5 OAG

Redefining Data Protection. Title Page. User s Guide. for the NetVault: Backup APM for Oracle. APM Version 5.5 OAG Redefining Data Protection Title Page User s Guide for the NetVault: Backup APM for Oracle APM Version 5.5 OAG-101-5.5-EN-01 06/06/08 Copyrights NetVault: Backup - User s Guide for the NetVault: Backup

More information

RECO CKPT SMON ARCH PMON RMAN DBWR

RECO CKPT SMON ARCH PMON RMAN DBWR Database Architecture t Architecture Topics Memory Structure Background Processes Database Accessing Database Information Starting the Database SMON PMON DBWR LGWR Parameter Database Architecture SNPn

More information

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g

LOSS OF FULL DATABASE AND DATABASE RECOVERY ORACLE 11g CONNECT TO TARGET DATABASE USING RMAN $ export ORACLE_SID=crms $ rlrman target / Recovery Manager: Release 11.2.0.1.0 - Production on Sat Jan 31 10:13:56 2015 Copyright (c) 1982, 2009, Oracle and/or its

More information

EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows. Installation & Configuration Guide

EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows. Installation & Configuration Guide EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows Installation & Configuration Guide August 2006 This manual describes the installation and configuration of the EVault InfoStage Oracle Plug-In

More information

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

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

More information

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ]

Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] s@lm@n Oracle Exam 11gocmu Oracle Database 11g Certified Master Upgrade Exam Version: 4.0 [ Total Questions: 671 ] Topic break down Topic No. of Questions Topic 1: Pool 1 112 Topic 2: Pool 2 100 Topic

More information

Agent for Oracle. Arcserve Backup for Windows r17.5

Agent for Oracle. Arcserve Backup for Windows r17.5 Agent for Oracle Arcserve Backup for Windows r17.5 Legal Notices This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK

FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK 31 October, 2017 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK Document Filetype: PDF 111.76 KB 0 FILE / RMAN BACKUP PRODUCTS MANUAL EBOOK You took this cold RMAN backup from a development database, your developpers

More information

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper March 2004

Using Recovery Manager with Oracle Data Guard in Oracle9i. An Oracle White Paper March 2004 Using Recovery Manager with Oracle Data Guard in Oracle9i An Oracle White Paper March 2004 Using Recovery Manager with Oracle Data Guard in Oracle9i Executive summary... 3 Introduction... 3 Configuration

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO 1 NO.1 Examine

More information

ORACLE DBA TRAINING IN BANGALORE

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

More information

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited

Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Disaster Recovery Strategies for RAC on Oracle SE Arjen Visser Dbvisit Software Limited Keywords Oracle RAC on Standard Edition Standby Database with RAC on Standard Edition Different standby database

More information

Redefining Data Protection

Redefining Data Protection Redefining Data Protection Title Page User s Guide for the NetVault:Backup APM for Oracle APM Version 5.000 NVE 7009-7F 07/23-07 Copyrights NetVault:Backup - User s Guide for the NetVault:Backup APM for

More information

Recovery Manager Concepts

Recovery Manager Concepts Recovery Manager Concepts Joseph S Testa Data Management Consulting (64) 79-9000 Ohio Oracle Users Group Apr 2003 Introduction Who is using RMAN for backup/recovery? Have you tested your recovery scenarios?

More information

Data Guard Configuration And Operation

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

More information

Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000

Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000 Cloning an Oracle Database to the Same Server Using FlashCopy and VolumeCopy on DS3400, DS4000, and DS5000 Technical White Paper 40563-00 Rev B December 2009 Copyright 2009 by International Business Machines

More information

EVault Software Oracle Plug-In 5.6 for Solaris 6.5 for Windows. Installation & Configuration Guide

EVault Software Oracle Plug-In 5.6 for Solaris 6.5 for Windows. Installation & Configuration Guide EVault Software Oracle Plug-In 5.6 for Solaris 6.5 for Windows Installation & Configuration Guide March 2009 This manual describes the installation and configuration of the EVault Software Oracle Plug-In

More information

Managing an Oracle Instance

Managing an Oracle Instance Managing an Oracle Instance Date: 07.10.2009 Instructor: SL. Dr. Ing. Ciprian Dobre 1 Objectives After completing this lesson, you should be able to do the following: Create and manage initialization parameter

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

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

More information

HP 3PAR Recovery Manager Software for Oracle

HP 3PAR Recovery Manager Software for Oracle HP 3PAR Recovery Manager 4.2.0 Software for Oracle User s Guide Abstract This document provides the information needed to install, configure, and use the HP 3PAR Recovery Manager 4.2.0 Software for Oracle

More information

IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University

IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University Database Administration Lab Manual IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University Lab Session - 1 Objective:- To be aware of various Oracle Database

More information

How To Apply Archive Logs Manually In Standby Database Using Rman

How To Apply Archive Logs Manually In Standby Database Using Rman How To Apply Archive Logs Manually In Standby Database Using Rman Using Rman Active Duplicate to create a Standby from a standby. Posted by RMAN_. Let's create some Archivelogs in Primary Database so that

More information

Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature

Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature Performing a 32 bit to 64 bit migration using the Transportable Database RMAN feature This note describes the procedure used to perform a 32 bit to 64 bit conversion of an 11.2.0.3 database on the Linux

More information

Installing and Configuring Oracle 10g Express Edition. for use with the ETM System

Installing and Configuring Oracle 10g Express Edition. for use with the ETM System Installing and Configuring Oracle 10g Express Edition for use with the ETM System Contents Oracle 10g XE Installation and Configuration 1 Preparing Oracle 10g XE for use with the ETM System...1 Installation...1

More information

COMPRESS TEST FOR HISTORIC DATABASES

COMPRESS TEST FOR HISTORIC DATABASES COMPRESS TEST FOR HISTORIC DATABASES Alejandro Vargas Oracle Israel TABLE OF CONTENTS About the Test... 6 List of Tested Scenarios... 7 Scenario #1. Alter Table Move Compress into ASM Based Tablespace...

More information

Insanity: doing the same thing over and over again and expecting different results. Nice Proverb

Insanity: doing the same thing over and over again and expecting different results. Nice Proverb Insanity: doing the same thing over and over again and expecting different results. Nice Proverb No back up was taken after reset logs. How to recover the database? Solution It s possible, I have tried

More information

KVS Enterprise Server Installation NOTE:

KVS Enterprise Server Installation NOTE: KVS Enterprise Server Installation (Client/Server and Terminal Services Installations) CDs Required: KVS Enterprise CD Oracle Database 10g, Release 2, Patch 3 Oracle Forms and Reports 6i Oracle Forms and

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

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

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

More information

Author A.Kishore Convert 11gR2 non-rac database to RAC database using rconfig

Author A.Kishore   Convert 11gR2 non-rac database to RAC database using rconfig Convert 11gR2 non-rac database to RAC database using rconfig I ve installed the new 11gR2 clustered ORACLE_HOME at /d01/oracle/app/oracle/product/11.2.0/dbhome_1 on both the nodes linux1 and linux2 New

More information

Lesson 2 RMAN Architecture

Lesson 2 RMAN Architecture RMAN Architecture 2.1 Lesson 2 RMAN Architecture An introduction to the architecture and components used by the RMAN utility. SKILLBUILDERS Author: Dave Anderson, SkillBuilders RMAN Architecture 2.2 2.2

More information

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

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

More information

Notice the oratab file doesn t contain the new database name (BDEV). Add it to the file by using below command;

Notice the oratab file doesn t contain the new database name (BDEV). Add it to the file by using below command; Task: Clone BPROD to BDEV SOURCE: BPROD Target: BDEV Part of the DBA task is to clone databases. Please don t get confused between cloning and refresh. They aren t similar. The simple fact is, during cloning,

More information

RMAN Backups and Reporting

RMAN Backups and Reporting Chapter 5 RMAN Backups and Reporting Chapter 4 provided the details on configuring RMAN and using specialized features to control the behavior of RMAN. After you consider which features you require, you

More information

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

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

More information

CHAPTER. Planning and Managing Tablespaces

CHAPTER. Planning and Managing Tablespaces CHAPTER 3 Planning and Managing Tablespaces 62 Oracle Database 12c DBA Handbook How a DBA configures the layout of the tablespaces in a database directly affects the performance and manageability of the

More information

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

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

More information

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

Technical White Paper August Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces

Technical White Paper August Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces Technical White Paper August 2010 Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces Migrating to Oracle 11g Using DRS with Transportable Tablespaces Contents Contents...

More information

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

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

More information

Imagination To Realization

Imagination To Realization Imagination To Realization Database Disaster Recovery and More Presented by: Stephen Rea University of Arkansas Cooperative Extension Service April 3, 2006 Monday 3:30 PM April 2-5 Orlando, Florida Session

More information

Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2

Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2 Flashback Database, Backup and Recovery in Oracle Database 12c Release 2 Select profile_details from oracle_community where name = Joerg Sobottka ; ORACLE DB SINCE 1991 IT Strategy OCP DBA (9i-12c) joerg.sobottka@robotron.ch

More information

Oracle.ActualTests.1Z0-023.v by.Ramon.151q

Oracle.ActualTests.1Z0-023.v by.Ramon.151q Oracle.ActualTests.1Z0-023.v2009-03-18.by.Ramon.151q Number: 1Z0-023 Passing Score: 800 Time Limit: 120 min File Version: 33.4 http://www.gratisexam.com/ Oracle 1z0-023 Exam Exam Name: Architecture and

More information

FLASHBACK RAC DATABASE TO RESTORE POINT Y. MORAN

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

More information

Oracle Database Administration

Oracle Database Administration A Active (Current) and Inactive Redo Log Files... 12:8 Alert and Trace Log Files... 1:34 Alert Log Files... 1:34 ALTER TABLE Statement - Reasons for using... 9:18 ALTER TABLESPACE... 7:23 Application Development...

More information

PASS4TEST 専門 IT 認証試験問題集提供者

PASS4TEST 専門 IT 認証試験問題集提供者 PASS4TEST 専門 IT 認証試験問題集提供者 http://www.pass4test.jp 1 年で無料進級することに提供する Exam : 1z0-052 Title : Oracle Database 11g: Administration I Vendor : Oracle Version : DEMO Get Latest & Valid 1Z0-052 Exam's Question

More information

Standby Database. Release 7.3. Sajjad Masud Jasmin Nakic Brian Quigley Lawrence To. Center of Expertise Worldwide Customer Support Oracle Corporation

Standby Database. Release 7.3. Sajjad Masud Jasmin Nakic Brian Quigley Lawrence To. Center of Expertise Worldwide Customer Support Oracle Corporation Technical Reports Compendium II, 1996 Technical Report Release 7.3 Sajjad Masud Jasmin Nakic Brian Quigley Lawrence To Center of Expertise Worldwide Customer Support Oracle Corporation August 1996 Oracle

More information

MBS Microsoft Oracle Plug-In 6.82 User Guide

MBS Microsoft Oracle Plug-In 6.82 User Guide MBS Microsoft Oracle Plug-In 6.82 User Guide 10 Oracle Plug-In This version of the Oracle Plug-In supports Windows Agents. It is an add-on that allows you to perform database backups on Oracle databases.

More information

Author A.Kishore

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

More information

Oracle Database 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

More information

Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard

Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard Oracle Database Appliance: Implementing Disaster Recovery Solutions Using Oracle Data Guard Protect production systems while leveraging standby computing power ORACLE WHITE PAPER SEPTEMBER 2017 Introduction

More information

KVS Enterprise Server Installation Worksheet

KVS Enterprise Server Installation Worksheet KVS Enterprise Server Installation Worksheet (Client/Server and Terminal Services Installations) CDs Required: KVS Enterprise CD KVS Oracle Installation DVD o Oracle Database 10g Release 2 Patch 3 o Oracle

More information

Oracle rman: Don t Forget the Basics

Oracle rman: Don t Forget the Basics Oracle rman: Don t Forget the Basics UGF 6458 Michael S. Abbey Oracle DBA / Team Lead / Author Sunday, September 29, 2012 Why Pythian Recognized Leader: Global industry leader in data infrastructure managed

More information

Databases Clone using ACFS. Infrastructure at your Service.

Databases Clone using ACFS. Infrastructure at your Service. Infrastructure at your Service. About me Infrastructure at your Service. David Hueber COO Principal Consultant +41 79 963 43 68 david.hueber[at]dbi-services.com Page 2 Who we are dbi services Experts At

More information

Creating an Oracle Database

Creating an Oracle Database 2 Creating an Oracle Database This chapter discusses the process of creating an Oracle database, and contains the following topics: Considerations Before Creating a Database Using the Database Configuration

More information

HP OpenView Operations

HP OpenView Operations HP OpenView Operations Oracle Real Application Clusters (RAC) Support Software Version: 8.23 Edition 1 UNIX Manufacturing Part Number: None (PDF only) September 2006 Copyright 1999-2006 Hewlett-Packard

More information

ActiveImage Protector 2016R2SP1. Backup and Recovery of Oracle Database Second Edition - March 23, 2017

ActiveImage Protector 2016R2SP1. Backup and Recovery of Oracle Database Second Edition - March 23, 2017 ActiveImage Protector 2016R2SP1 Backup and Recovery of Oracle Database Second Edition - March 23, 2017 This user guide provides a description about backup and recovery procedures of Oracle database by

More information

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product

Oracle EXAM - 1Z Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration. Buy Full Product Oracle EXAM - 1Z0-058 Oracle Real Application Clusters 11g Release 2 and Grid Infrastructure Administration Buy Full Product http://www.examskey.com/1z0-058.html Examskey Oracle 1Z0-058 exam demo product

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

DOC ORACLE STANDBY USER MANUAL ARCHIVE

DOC ORACLE STANDBY USER MANUAL ARCHIVE 19 December, 2017 DOC ORACLE STANDBY USER MANUAL ARCHIVE Document Filetype: PDF 254.06 KB 0 DOC ORACLE STANDBY USER MANUAL ARCHIVE ALTER DATABASE CREATE STANDBY CONTROLFILE. 3 How to configure Standby

More information

Oracle 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

ASM BASED TABLESPACES BACKUP WITH RMAN FOR LONG TERM OFFLINE STORING

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

More information

How To Reduce Temp Tablespace Size In Oracle 11g

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

More information

A. connecting to the target database and a recovery catalog to execute the duplicate command

A. connecting to the target database and a recovery catalog to execute the duplicate command Volume: 175 Questions Question No : 1 Which two are prerequisites for creating a backup-based duplicate database? A. connecting to the target database and a recovery catalog to execute the duplicate command

More information

Applied Biosystems SQL*LIMS Technical Support Technical Note

Applied Biosystems SQL*LIMS Technical Support Technical Note Applied Biosystems SQL*LIMS Technical Support Technical Note Document Number: DBA003 Last Revised: 5//2003 Software Versions: SQL*LIMS v4.0.6 and v4. Author: Deborah Man Subject: How to check storage space

More information

ORACLE REFERENCE 11GR2 MANUAL DOCUMENT

ORACLE REFERENCE 11GR2 MANUAL DOCUMENT 09 May, 2018 ORACLE REFERENCE 11GR2 MANUAL DOCUMENT Document Filetype: PDF 483.77 KB 0 ORACLE REFERENCE 11GR2 MANUAL DOCUMENT A MANUAL setting does not prevent Oracle Restart from monitoring the service

More information

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-1 Migration Preparation Operations 1 Capture database file metadata 2 Verify COMPATIBLE setting 3 Create INCREMENTAL

More information

Chapter 14: Backing up the Oracle Database Tapies covered in this section. Backup Overview. How often should backups be performed?

Chapter 14: Backing up the Oracle Database Tapies covered in this section. Backup Overview. How often should backups be performed? Chapter 14: Backing up the Oracle Database Tapies covered in this section Backup Overview + Planning Database Backup + Causes of System Failure Backup Considerations Types of Backup + Hot Backup + Cold

More information

The Challenges of Oracle Cloning. Safa Alak Consulting System Engineer

The Challenges of Oracle Cloning. Safa Alak Consulting System Engineer The Challenges of Oracle Cloning Safa Alak Consulting System Engineer safa@netapp.com Agenda Challenges Traditional Approach for Cloning The command Line Way Using RMAN 10G R2 Transportable Database Option

More information

HP 3PAR Recovery Manager Software for Oracle

HP 3PAR Recovery Manager Software for Oracle HP 3PAR Recovery Manager 4.6.0 Software for Oracle User Guide Abstract This document provides the information needed to install, configure, and use the HP 3PAR Recovery Manager 4.6.0 Software for Oracle

More information

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

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

More information

Chapter One. Concepts BACKUP CONCEPTS

Chapter One. Concepts BACKUP CONCEPTS Chapter One 1 Concepts Backup and recovery is not a single, discrete subject, but a collection of methods, strategies, and procedures to protect the data in your database and provide a means of recovery

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Implementing ASO: Tips & Tricks. Kurt Lysy Global Security Architect

Implementing ASO: Tips & Tricks. Kurt Lysy Global Security Architect Implementing ASO: Tips & Tricks Kurt Lysy Global Security Architect 1 Agenda Proving use of ASO network encryption Centralized tnsnames.ora and sqlnet.ora Supporting multiple databases and encryption wallets

More information

Database Instance Setup and Configuration. Oracle Database 10g

Database Instance Setup and Configuration. Oracle Database 10g Database Instance Setup and Configuration Oracle Database 10g Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. DATABASE CONFIGURATION...

More information

You'll even like your Data Guard more with Flashback

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

More information

Exam : Oracle 1Z0 043

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

More information

Oracle RMAN Pocket Reference. By Darl Kuhn, Scott Schulze. Publisher : O'Reilly. Pub Date : November 2001 ISBN : Pages : 120.

Oracle RMAN Pocket Reference. By Darl Kuhn, Scott Schulze. Publisher : O'Reilly. Pub Date : November 2001 ISBN : Pages : 120. Oracle RMAN Pocket Reference By Darl Kuhn, Scott Schulze Table Contents Reviews Reader Reviews Errata of Publisher : O'Reilly Pub Date : November 2001 ISBN : 0-596-00233-5 Pages : 120 Copyright Chapter

More information

INSTALL GUIDE BIOVIA INSIGHT 2016

INSTALL GUIDE BIOVIA INSIGHT 2016 INSTALL GUIDE BIOVIA INSIGHT 2016 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

What was new in 11g for Backup and Recovery? Contents

What was new in 11g for Backup and Recovery? Contents What was new in 11g for Backup and Recovery? Contents Introduction... 3 RMAN New Features and Enhancements... 3 Proactive Health Check... 3 Database Recovery Advisor... 6 Faster Backup Compression... 11

More information

Migrate Databases to Exadata Using RMAN Duplicate

Migrate Databases to Exadata Using RMAN Duplicate Migrate Databases to Exadata Using RMAN Duplicate BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance

More information

INSTALL GUIDE BIOVIA INSIGHT 2.6

INSTALL GUIDE BIOVIA INSIGHT 2.6 INSTALL GUIDE BIOVIA INSIGHT 2.6 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA, SIMULIA, GEOVIA, EXALEAD,

More information

SELECTING AN ORACLE BACKUP SOLUTION PART 3: HOT BACKUPS WITH THE NETBACKUP FOR ORACLE ADVANCED BLI AGENT

SELECTING AN ORACLE BACKUP SOLUTION PART 3: HOT BACKUPS WITH THE NETBACKUP FOR ORACLE ADVANCED BLI AGENT VERITAS Education INSTRUCTOR ARTICLES APRIL 2003 1. Selecting an Oracle Backup Solution Part 3: Hot Backups with the NetBackup for Oracle Advanced BLI Agent 2. Using a Volume Snapshot to Recover a Lost

More information

High Availability Overview Paper

High Availability Overview Paper High Availability Overview Paper March 2001 Please note: The information contained in this document is intended as a guide to implementing high availability systems. Please keep in mind, however, that

More information