=============================

Size: px
Start display at page:

Download "============================="

Transcription

1 Cross-Platform Transportable Database: ====================================== RMAN CONVERT DATABASE from Windows to Solaris using RMAN, and upgrade the same from to ================================================================================== The RMAN CONVERT DATABASE command is used to automate the movement of an entire database From one platform (the source platform) to another (the destination platform). Provided that the source and destination platforms are of the same endian format, RMAN automates most of the steps of creating a new database on the destination platform, Which contains the same data as the source database, and which has, with a few exceptions, the same settings as the source database. Windows: Win-7 32 bit: Source ============================= set pages 50 select * from v$transportable_platform order by 2; PLATFORM_ID PLATFORM_NAME ENDIAN_FORMAT AIX-Based Systems (64-bit) Big 16 Apple Mac OS Big 15 HP Open VMS Little 5 HP Tru64 UNIX Little 3 HP-UX (64-bit) Big 4 HP-UX IA (64-bit) Big 18 IBM Power Based Linux Big 9 IBM zseries Based Linux Big 13 Linux 64-bit for AMD Little 10 Linux IA (32-bit) Little 11 Linux IA (64-bit) Little 12 Microsoft Windows 64-bit for AMD Little 7 Microsoft Windows IA (32-bit) Little (our Source) 8 Microsoft Windows IA (64-bit) Little 17 Solaris Operating System (x86) Little (our Target) 1 Solaris[tm] OE (32-bit) Big 2 Solaris[tm] OE (64-bit) Big 17 rows selected. col PLATFORM_NAME for a50 select d.platform_name, endian_format from v$transportable_platform tp, v$database d where tp.platform_name = d.platform_name ; PLATFORM_NAME ENDIAN_FORMAT Microsoft Windows IA (32-bit) Little 1 P a g e

2 show parameter compatible NAME TYPE VALUE compatible string Solaris: (Target) =================== -bash-3.00$ uname -a SunOS orasolaris Generic_ i86pc i386 i86pc -bash-3.00$ cat /etc/release Oracle Solaris 10 9/10 s10x_u9wos_14a X86 Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. Assembled 11 August bash-3.00$ isainfo -kv 32-bit i386 kernel modules You can check the Platform from one of the existing DB s on Target as below. col PLATFORM_NAME for a50 select d.platform_name, endian_format from v$transportable_platform tp, v$database d where tp.platform_name = d.platform_name ; PLATFORM_NAME ENDIAN_FORMAT Solaris Operating System (x86) Little Windows: Source ============================= select name from v$database; NAME Q041 set line 200 select round(df.total/1024/1024/1024,2) "DataFile Size GB", round(log.total/1024/1024/1024,2) "Redo Log Size GB", round(control.total/1024/1024,2) "Control File Size MB", round((df.total + LOG.TOTAL + CONTROL.TOTAL)/ ,2) "Total Size Mb", round((df.total + LOG.TOTAL + CONTROL.TOTAL)/ /1024,2) "Total Size Gb" from dual, (select sum(a.bytes) TOTAL from dba_data_files a) DF, (select sum(b.bytes) TOTAL from v$log b) LOG, (select sum((cffsz+1)*cfbsz) TOTAL from x$kcccf c) CONTROL; 2 P a g e

3 DataFile Size GB Redo Log Size GB Control File Size MB Total Size Mb Total Size Gb create table mtest(nam varchar2(20)); Table created. insert into mtest values('cross Plat Mig'); 1 row created. commit; Commit complete. Check Pre-requisite on Source DB: =================================== set serveroutput on declare db_ready boolean; begin db_ready := dbms_tdb.check_db('solaris Operating System (x86)'); end; / Database is not open in READ-ONLY mode. Open the database in READ-ONLY mode and retry. PL/SQL procedure successfully completed. set serveroutput on declare external boolean; begin /* value of external is ignored, but with SERVEROUTPUT set to ON * dbms_tdb.check_external displays report of external objects * on console */ external := dbms_tdb.check_external; end; / The following directories exist in the database: SYS.DATA_PUMP_DIR PL/SQL procedure successfully completed. Make the Source DB as Read only: ==================================== shut immediate Database closed. Database dismounted. ORACLE instance shut down. 3 P a g e

4 startup mount; ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes Database mounted. alter database open read only; Database altered. set line 200 select NAME,DB_UNIQUE_NAME,OPEN_MODE,CONTROLFILE_TYPE,DATABASE_ROLE,LOG_MODE,PROTECTION_MO DE from v$database; NAME DB_UNIQUE_NAME OPEN_MODE CONTROL DATABASE_ROLE LOG_MODE PROTECTION_MODE Q041 q041 READ ONLY CURRENT PRIMARY ARCHIVELOG MAXIMUM PERFORMANCE select distinct substr(name,1,instr(name,'\',-1)-1) PATH from v$datafile; PATH ======================== C:\ORACLE\ORADATA\Q041 Now Covert the Source DB(q041): ================================= c:\oracle>set oracle ORACLE_HOME=c:\oracle\product\10.2.0\db_1 oracle_sid=q041 rman target / CONVERT DATABASE NEW DATABASE 'test' transport script 'C:\VMDisks\winshare\orabkp\migtest\trans.sql' to platform 'Solaris Operating System (x86)' db_file_name_convert 'C:\ORACLE\ORADATA\Q041' 'C:\VMDisks\winshare\orabkp\migtest' ; c:\oracle>rman target / Recovery Manager: Release Production on Sun Sep 27 12:12: Copyright (c) 1982, 2005, Oracle. All rights reserved. connected to target database: Q041 (DBID= ) RMAN> CONVERT DATABASE NEW DATABASE 'test' 2> transport script 'C:\VMDisks\winshare\orabkp\migtest\trans.sql' 3> to platform 'Solaris Operating System (x86)' 4> db_file_name_convert 'C:\ORACLE\ORADATA\Q041' 'C:\VMDisks\winshare\orabkp\migtest' 5> ; 4 P a g e

5 Starting convert at 27-SEP-13 using target database control file instead of recovery catalog allocated channel: ORA_DISK_1 channel ORA_DISK_1: sid=154 devtype=disk Directory SYS.DATA_PUMP_DIR found in the database User SYS with SYSDBA and SYSOPER privilege found in password file channel ORA_DISK_1: starting datafile conversion input datafile fno=00001 name=c:\oracle\oradata\q041\system01.dbf converted datafile=c:\vmdisks\winshare\orabkp\migtest\system01.dbf channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:15 channel ORA_DISK_1: starting datafile conversion input datafile fno=00002 name=c:\oracle\oradata\q041\undotbs01.dbf converted datafile=c:\vmdisks\winshare\orabkp\migtest\undotbs01.dbf channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:07 channel ORA_DISK_1: starting datafile conversion input datafile fno=00003 name=c:\oracle\oradata\q041\sysaux01.dbf converted datafile=c:\vmdisks\winshare\orabkp\migtest\sysaux01.dbf channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:07 channel ORA_DISK_1: starting datafile conversion input datafile fno=00004 name=c:\oracle\oradata\q041\users01.dbf converted datafile=c:\vmdisks\winshare\orabkp\migtest\users01.dbf channel ORA_DISK_1: datafile conversion complete, elapsed time: 00:00:01 Run SQL script C:\VMDISKS\WINSHARE\ORABKP\MIGTEST\TRANS.SQL on the target platform to create database Edit init.ora file C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\INIT_00OL2HTU_1_0.ORA. This PFILE will be used to create the database on the target platform To recompile all PL/SQL modules, run utlirp.sql and utlrp.sql on the target platform To change the internal database identifier, use DBNEWID Utility Finished backup at 27-SEP-13 RMAN> Manually create pfile to converted location, though it s not required. ======================================================================== create pfile='c:\vmdisks\winshare\orabkp\migtest\pfile.ora' from spfile; OR Edit init.ora file C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\INIT_00OL2HTU_1_0.ORA, and set values as per your new environment.this PFILE will be used to create the database on the target platform. # Please change the values of the following parameters: control_files _00OKUCLB" audit_file_dest background_dump_dest user_dump_dest core_dump_dest db_name = "C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\CF_D-TEST_ID- = "C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\ADUMP" = "C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\BDUMP" = "C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\UDUMP" = "C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\CDUMP" = "TEST" 5 P a g e

6 Modified values ================== *.audit_file_dest='/u01/app/oracle/admin/test/adump' *.background_dump_dest='/u01/app/oracle/admin/test/bdump' *.control_files='/oradata1/test/control01.ctl' *.core_dump_dest='/u01/app/oracle/admin/test/cdump' *.user_dump_dest='/u01/app/oracle/admin/test/udump' *.db_name="test" *.compatible=' ' ftp/scp/transfer the converted files to Solaris target host: ========================================================= This ftp can be avoided if this filesystem is shared between Windows and Solaris as in my case below. C:\VMDisks\winshare\orabkp\migtest\* C:\Windows\System32>dir C:\VMDisks\winshare\orabkp\migtest\* Volume in drive C is Root Volume Serial Number is BCFF-7226 Directory of C:\VMDisks\winshare\orabkp\migtest :13 <DIR> :13 <DIR> :13 125,837,312 SYSAUX01.DBF :12 314,580,992 SYSTEM01.DBF :13 2,834 TRANS.SQL :13 209,723,392 UNDOTBS01.DBF :13 5,251,072 USERS01.DBF 5 File(s) 655,395,602 bytes 2 Dir(s) 116,189,528,064 bytes free -bash-3.00$ df -h grep win winshare 225G 117G 108G 52% /mnt/sf_winshare -bash-3.00$ cd /mnt/sf_winshare/orabkp/migtest -bash-3.00$ ls -ltrh total rwxrwxrwx 1 root vboxsf 300M Sep 29 12:12 SYSTEM01.DBF -rwxrwxrwx 1 root vboxsf 200M Sep 29 12:13 UNDOTBS01.DBF -rwxrwxrwx 1 root vboxsf 120M Sep 29 12:13 SYSAUX01.DBF -rwxrwxrwx 1 root vboxsf 5.0M Sep 29 12:13 USERS01.DBF -rwxrwxrwx 1 root vboxsf 2.8K Sep 29 12:13 TRANS.SQL -bash-3.00$ 6 P a g e

7 Below Virtual Box shows the shared folder between Windows and Solaris. Copy the datafiles to required directories in Solaris ====================================================== cp /mnt/sf_winshare/orabkp/migtest/* /oradata1/test/ -bash-3.00$ cd /oradata1/test/ -bash-3.00$ ls -ltrh total rwxr-xr-x 1 oracle dba 942 Sep 27 22:48 pfile.ora -rwxr-xr-x 1 oracle dba 2.3K Sep 27 22:48 TRANS.SQL drwxr-xr-x 2 oracle dba 512 Sep 29 22:38 arch -rwxr-xr-x 1 oracle dba 5.0M Sep 29 22:59 USERS01.DBF -rwxr-xr-x 1 oracle dba 120M Sep 29 22:59 SYSAUX01.DBF -rwxr-xr-x 1 oracle dba 300M Sep 29 22:59 SYSTEM01.DBF -rwxr-xr-x 1 oracle dba 200M Sep 29 22:59 UNDOTBS01.DBF -rw-r oracle dba 7.0M Sep 29 22:59 control01.ctl Create required directories for test DB =========================================== cd /u01/app/oracle/admin mkdir test cd test mkdir adump bdump cdump udump Create Archive folder ========================== cd /oradata1/test mkdir arch cd arch pwd /oradata1/test/arch 7 P a g e

8 Verify and Copy the pfile to ORACLE_HOME/dbs in Solaris. =========================================================== -bash-3.00$ cat /oradata1/test/pfile.ora test. db_cache_size= test. java_pool_size= test. large_pool_size= test. shared_pool_size= test. streams_pool_size=0 *.db_block_size=8192 *.db_domain='' *.db_file_multiblock_read_count=16 *.java_pool_size=0 *.job_queue_processes=10 *.log_archive_format='test_arch_t%ts%sr%r.arc' *.open_cursors=300 *.pga_aggregate_target= *.processes=150 *.remote_login_passwordfile='exclusive' *.sga_max_size= *.sga_target= *.standby_file_management='auto' *.undo_management='auto' *.undo_tablespace='undotbs1' *.db_name='test' *.log_archive_dest_1='location=/oradata1/test/arch' *.audit_file_dest='/u01/app/oracle/admin/test/adump' *.background_dump_dest='/u01/app/oracle/admin/test/bdump' *.compatible=' ' *.control_files='/oradata1/test/control01.ctl' *.core_dump_dest='/u01/app/oracle/admin/test/cdump' *.user_dump_dest='/u01/app/oracle/admin/test/udump' Copy the pfile to init<sid>.ora ===================================== cp /oradata1/test/pfile.ora $ORACLME/dbs/inittest.ora Modify and run file TRANS.SQL which got generated as part of convert Before Modification ==================== STARTUP NOMOUNT PFILE='C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\INIT_00OL2HTU_1_0.ORA' CREATE CONTROLFILE REUSE SET DATABASE "TEST" RESETLOGS FORCE LOGGING ARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\ARCH_D-TEST_ID _S-23_T- 1_A _00OL2HTU' SIZE 50M, GROUP 2 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\ARCH_D-TEST_ID _S-24_T- 1_A _00OL2HTU' SIZE 50M, GROUP 3 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\ARCH_D-TEST_ID _S-22_T- 1_A _00OL2HTU' SIZE 50M 8 P a g e

9 DATAFILE 'C:\VMDISKS\WINSHARE\ORABKP\MIGTEST\SYSTEM01.DBF', 'C:\VMDISKS\WINSHARE\ORABKP\MIGTEST\UNDOTBS01.DBF', 'C:\VMDISKS\WINSHARE\ORABKP\MIGTEST\SYSAUX01.DBF', 'C:\VMDISKS\WINSHARE\ORABKP\MIGTEST\USERS01.DBF' CHARACTER SET WE8MSWIN1252 ; -- Database can now be opened zeroing the online logs. ALTER DATABASE OPEN RESETLOGS; ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\ORACLE\PRODUCT\10.2.0\DB_1\DATABASE\DATA_D- TEST_I _TS-TEMP_FNO-1_00OL2HTU' SIZE AUTOEXTEND ON NEXT MAXSIZE 32767M; SHUTDOWN IMMEDIATE STARTUP UPGRADE SHUTDOWN IMMEDIATE STARTUP set feedback 6; After modification =================== -bash-3.00$ cat TRANS.SQL REM STARTUP NOMOUNT PFILE='/oradata1/test/pfile.ora' STARTUP NOMOUNT CREATE CONTROLFILE REUSE SET DATABASE "TEST" RESETLOGS FORCE LOGGING ARCHIVELOG MAXLOGFILES 16 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 8 MAXLOGHISTORY 292 LOGFILE GROUP 1 '/oradata1/test/redo01.rdo' SIZE 50M, GROUP 2 '/oradata1/test/redo02.rdo' SIZE 50M, GROUP 3 '/oradata1/test/redo03.rdo' SIZE 50M DATAFILE '/oradata1/test/system01.dbf', '/oradata1/test/undotbs01.dbf', '/oradata1/test/sysaux01.dbf', '/oradata1/test/users01.dbf' CHARACTER SET WE8MSWIN1252 ; -- Database can now be opened zeroing the online logs. ALTER DATABASE OPEN RESETLOGS; ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata1/test/temp01.dbf' SIZE AUTOEXTEND ON NEXT MAXSIZE 32767M; set echo off prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ prompt * Your database has been created successfully! 9 P a g e

10 prompt * There are many things to think about for the new database. Here prompt * is a checklist to help you stay on track: prompt * 1. You may want to redefine the location of the directory objects. prompt * 2. You may want to change the internal database identifier (DBID) prompt * or the global database name for this database. Use the prompt * NEWDBID Utility (nid). prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SHUTDOWN IMMEDIATE REM STARTUP UPGRADE PFILE='/oradata1/test/pfile.ora' STARTUP SHUTDOWN IMMEDIATE REM STARTUP PFILE='/oradata1/test/pfile.ora' STARTUP -- The following step will recompile all PL/SQL modules. -- It may take serveral hours to *****************End of TRANS.SQL ************** export ORACLE_SID=test sqlplus / as sysdba sh-3.00$ sqlplus / as sysdba SQL*Plus: Release Production on Mon Sep 30 20:50: Copyright (c) 1982, 2005, Oracle. All Rights Reserved. Connected to an idle instance set echo -- The following commands will create a new control file and use it -- to open the database. -- Data used by Recovery Manager will be lost. -- The contents of online logs will be lost and all backups will -- be invalidated. Use this only if online logs are damaged. -- After mounting the created controlfile, the following SQL -- statement will place the database in the appropriate -- protection mode: -- ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE REM> STARTUP NOMOUNT PFILE='/oradata1/test/pfile.ora' STARTUP NOMOUNT ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes 10 P a g e

11 CREATE CONTROLFILE REUSE SET DATABASE "TEST" RESETLOGS FORCE LOGGING ARCHIVELOG 2 MAXLOGFILES 16 3 MAXLOGMEMBERS 3 4 MAXDATAFILES MAXINSTANCES 8 6 MAXLOGHISTORY LOGFILE 8 GROUP 1 '/oradata1/test/redo01.rdo' SIZE 50M, 9 GROUP 2 '/oradata1/test/redo02.rdo' SIZE 50M, 10 GROUP 3 '/oradata1/test/redo03.rdo' SIZE 50M 11 DATAFILE 12 '/oradata1/test/system01.dbf', 13 '/oradata1/test/undotbs01.dbf', 14 '/oradata1/test/sysaux01.dbf', 15 '/oradata1/test/users01.dbf' 16 CHARACTER SET WE8MSWIN ; Control file created. -- Database can now be opened zeroing the online logs. ALTER DATABASE OPEN RESETLOGS; ALTER DATABASE OPEN RESETLOGS * ERROR at line 1: ORA-01092: ORACLE instance terminated. Disconnection forced ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata1/test/temp01.dbf' 2 SIZE AUTOEXTEND ON NEXT MAXSIZE 32767M; ERROR: ORA-03114: not connected to ORACLE -- End of tempfile additions. -- set echo off ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Your database has been created successfully! * There are many things to think about for the new database. Here * is a checklist to help you stay on track: * 1. You may want to redefine the location of the directory objects. * 2. You may want to change the internal database identifier (DBID) * or the global database name for this database. Use the * NEWDBID Utility (nid). ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ORA-24324: service handle not initialized ORA-01041: internal error. hostdef extension doesn't exist ORA-24324: service handle not initialized ORA-01041: internal error. hostdef extension doesn't exist WHENEVER SQLERROR EXIT; DOC 11 P a g e

12 DOC> The following statement will cause an "ORA-01722: invalid number" DOC> error if there the database was not opened in UPGRADE mode DOC> DOC> If you encounter this error, execute "SHUTDOWN", "STARTUP UPGRADE" and DOC> re-execute utlirp.sql DOC># SELECT TO_NUMBER('MUST_BE_OPEN_UPGRADE') FROM v$instance 2 WHERE status!= 'OPEN MIGRATE'; ERROR: ORA-03114: not connected to ORACLE Disconnected from Oracle Database 10g Enterprise Edition Release Production With the Partitioning, OLAP and Data Mining options sh-3.00$ sh-3.00$ exit Note: Script failed to open database in Reset Logs because the Our Source DB version was and on Solaris Oracle software is We need to upgrade before continuing further steps. Alert.log ========== Mon Sep 30 20:52: Errors in file /u01/app/oracle/admin/test/udump/test_ora_1577.trc: ORA-00704: bootstrap process failure ORA-39700: database must be opened with UPGRADE option Mon Sep 30 20:52: Error 704 happened during db open, shutting down database USER: terminating instance due to error 704 Instance terminated by USER, pid = 1577 ORA-1092 signalled during: ALTER DATABASE OPEN RESETLOGS... We need to manually perform further steps to upgrade to as below: =========================================================================== startup upgrade ORACLE instance started. Total System Global Area bytes Fixed Size bytes Variable Size bytes Database Buffers bytes Redo Buffers bytes Database mounted. ORA-01113: file 1 needs media recovery ORA-01110: data file 1: '/oradata1/test/system01.dbf'!ls -ltrh /oradata1/test/*.rdo -rw-r oracle dba 50M Sep 30 20:52 /oradata1/test/redo01.rdo -rw-r oracle dba 50M Sep 30 20:52 /oradata1/test/redo02.rdo -rw-r oracle dba 50M Sep 30 20:52 /oradata1/test/redo03.rdo 12 P a g e

13 select GROUP#,SEQUENCE#,FIRST_CHANGE# from v$log; GROUP# SEQUENCE# FIRST_CHANGE# recover database until cancel using backup controlfile; ORA-00279: change generated at 09/30/ :52:39 needed for thread 1 ORA-00289: suggestion : /oradata1/test/arch/test_arch_t1s1r arc ORA-00280: change for thread 1 is in sequence #1 Specify log: {<RET>=suggested filename AUTO CANCEL} /oradata1/test/redo03.rdo => Here we applied the last redo generated from Log applied. resetlogs. Media recovery complete. Now database recovered successfully, so open database with resetlogs for upgrade as below. ======================================================== ALTER DATABASE OPEN RESETLOGS upgrade; Database altered. Alert.log ============ Mon Sep 30 21:06: ALTER DATABASE RECOVER LOGFILE '/oradata1/test/redo03.rdo' Mon Sep 30 21:06: Media Recovery Log /oradata1/test/redo03.rdo Mon Sep 30 21:06: Incomplete recovery applied all redo ever generated. Recovery completed through change Mon Sep 30 21:06: Media Recovery Complete (test) Completed: ALTER DATABASE RECOVER LOGFILE '/oradata1/test/redo03.rdo' Mon Sep 30 21:08: ALTER DATABASE OPEN RESETLOGS upgrade Mon Sep 30 21:08: RESETLOGS after complete recovery through change Resetting resetlogs activation ID (0x7eb39e79) Online log /oradata1/test/redo01.rdo: Thread 1 Group 1 was previously cleared Online log /oradata1/test/redo02.rdo: Thread 1 Group 2 was previously cleared Mon Sep 30 21:08: Setting recovery target incarnation to 3 Mon Sep 30 21:08: Assigning activation ID (0x7eb35533) LGWR: STARTING ARCH PROCESSES ARC0 started with pid=13, OS id=1620 Mon Sep 30 21:08: ARC0: Archival started ARC1: Archival started LGWR: STARTING ARCH PROCESSES COMPLETE Thread 1 opened at log sequence 1 Current log# 3 seq# 1 mem# 0: /oradata1/test/redo03.rdo 13 P a g e

14 .. Dictionary check beginning Tablespace 'TEMP' #3 found in data dictionary, but not in the controlfile. Adding to controlfile. Dictionary check complete Mon Sep 30 21:08: SMON: enabling tx recovery Mon Sep 30 21:08: ********************************************************************* WARNING: The following temporary tablespaces contain no files. This condition can occur when a backup controlfile has been restored. It may be necessary to add files to these tablespaces. That can be done using the SQL statement: ALTER TABLESPACE <tablespace_name> ADD TEMPFILE Alternatively, if these temporary tablespaces are no longer needed, then they can be dropped. Empty temporary tablespace: TEMP ********************************************************************* Database Characterset is WE8MSWIN1252 Updating NLS parameters in sys.props$ -- adding NLS parameters.. MMON started with pid=11, OS id=1626 MMNL started with pid=12, OS id=1628 Mon Sep 30 21:08: ALTER SYSTEM enable restricted session; Mon Sep 30 21:08: ALTER SYSTEM SET _system_trig_enabled=false SCOPE=MEMORY; Mon Sep 30 21:08: ALTER SYSTEM SET aq_tm_processes=0 SCOPE=MEMORY; Mon Sep 30 21:08: ALTER SYSTEM SET resource_manager_plan='' SCOPE=MEMORY; Threshold validation cannot be done before catproc is loaded. replication_dependency_tracking turned off (no async multimaster replication found) Mon Sep 30 21:08: LOGSTDBY: Validating controlfile with logical metadata Mon Sep 30 21:08: LOGSTDBY: Validation complete Global Name changed to TEST Completed: ALTER DATABASE OPEN RESETLOGS upgrade Mon Sep 30 21:09: Add Temp tablespace: ======================= SQ> ALTER TABLESPACE TEMP ADD TEMPFILE '/oradata1/test/temp01.dbf' SIZE AUTOEXTEND ON NEXT MAXSIZE 32767M; Tablespace altered. 14 P a g e

15 col HOST_NAME for a20 col DB_UNIQUE_NAME for a10 set line 200 select NAME,DB_UNIQUE_NAME,STATUS,OPEN_MODE,CONTROLFILE_TYPE,DATABASE_ROLE,LOG_MODE,PROTEC TION_MODE,VERSION from v$instance,v$database; NAME DB_UNIQUE_ STATUS OPEN_MODE CONTROL DATABASE_ROLE LOG_MODE PROTECTION_MODE VERSION TEST test OPEN MIGRATE READ WRITE CURRENT PRIMARY ARCHIVELOG MAXIMUM PERFORMANCE Upgrade DB, as the database is open in Upgrade mode: ====================================================== Run the Catupgrd.sql to upgrade DB to TIMESTAMP COMP_TIMESTAMP UPGRD_END :49:50. Oracle Database 10.2 Upgrade Status Utility :49:50. Component Status Version HH:MM:SS Oracle Database Server VALID :09:08 Oracle Enterprise Manager VALID :00:43. Total Upgrade Time: 00:09:51 DOC> DOC> Next shutdown immediate, restart for normal operation, and then DOC> run utlrp.sql to recompile any invalid application objects. DOC> Alert.log =============== Mon Sep 30 21:40: SERVER COMPONENT id=patch_bgn: timestamp= :40:01. Thread 1 advanced to log sequence 9 Current log# 2 seq# 9 mem# 0: /oradata1/test/redo02.rdo Mon Sep 30 21:49: SERVER COMPONENT id=catproc: timestamp= :49:06 15 P a g e

16 SERVER COMPONENT id=rdbms: status=valid, version= , timestamp= :49:06 Mon Sep 30 21:49: Thread 1 advanced to log sequence 10 Current log# 3 seq# 10 mem# 0: /oradata1/test/redo03.rdo Mon Sep 30 21:49: SERVER COMPONENT id=em: status=valid, version= , timestamp= :49:50 SERVER ACTION=UPGRADE id=: Upgraded from SERVER COMPONENT id=upgrd_end: timestamp= :49:50 Mon Sep 30 21:52: set line 200 col COMP_NAME for a55 SELECT COMP_ID,comp_name, status, substr(version,1,10)as version,modified from dba_registry; COMP_ID COMP_NAME STATUS VERSION MODIFIED OWM Oracle Workspace Manager VALID SEP :53:13 EM Oracle Enterprise Manager VALID SEP :49:50 CATALOG Oracle Database Catalog Views VALID SEP :49:06 CATPROC Oracle Database Packages and Types VALID SEP :49:06 Now follow further steps from TRANS.SQL for migrating: =========================================================== SHUTDOWN IMMEDIATE REM STARTUP UPGRADE PFILE='/oradata1/test/pfile.ora' STARTUP Out Put of above =================.. Rem =========================================================================== Rem END utlip.sql Rem =========================================================================== DOC DOC> utlirp.sql completed successfully. All PL/SQL objects in the DOC> database have been invalidated. DOC> DOC> Shut down and restart the database in normal mode and run utlrp.sql to DOC> recompile invalid objects. 16 P a g e

17 Execute Below further from TRANS.sql ==================================== SHUTDOWN IMMEDIATE REM STARTUP PFILE='/oradata1/test/pfile.ora' STARTUP -- The following step will recompile all PL/SQL modules. -- It may take serveral hours to complete. archive log list Database log mode Archive Mode Automatic archival Enabled Archive destination /oradata1/test/arch Oldest online log sequence 14 Next log sequence to archive 16 Current log sequence 16 select * from mtest; NAM Cross Plat Mig set line 200 col COMP_NAME for a55 SELECT COMP_ID,comp_name, status, substr(version,1,10)as version,modified from dba_registry; COMP_ID COMP_NAME STATUS VERSION MODIFIED OWM Oracle Workspace Manager VALID SEP :07:40 EM Oracle Enterprise Manager VALID SEP :49:50 CATALOG Oracle Database Catalog Views VALID SEP :07:40 CATPROC Oracle Database Packages and Types VALID SEP :07:40 * There are many things to think about for the new database. Here * is a checklist to help you stay on track: * 1. You may want to redefine the location of the directory objects. * 2. You may want to change the internal database identifier (DBID) * or the global database name for this database. Use the * NEWDBID Utility (nid). Reference: Migration of Oracle Instances Across OS Platforms Doc ID: Note: P a g e

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

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

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

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

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

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

C:\Program Files (x86)\notepad++\change.log 26 August :42

C:\Program Files (x86)\notepad++\change.log 26 August :42 C:\Program Files (x86\notepad++\change.log 26 August 2012 04:42 CREATING PHYSICAL STANDBY DATABASE STEPS: @PRASHANT DIXIT --------------------------------------------- A standby database is a database

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

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

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

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

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

Configuring High Availability for the PMG DB

Configuring High Availability for the PMG DB This chapter describes the process of configuring high availability for the PMG DB. It provides the prerequisites and procedures required to configure and test the hot standby and cold standby for Cisco

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

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

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

Manually create oracle 9i database in RedHat Linux Advanced Server 2.1 by M.B.G.Suranga De Silva

Manually create oracle 9i database in RedHat Linux Advanced Server 2.1 by M.B.G.Suranga De Silva Manually create oracle 9i database in RedHat Linux Advanced Server 2.1 by M.B.G.Suranga De Silva (suranga@ceylonlinux.com 1 Install Redhat Advanced Server 2.1 with X and GNOME and KDE 2 Choose Advanced

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

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

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

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

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

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

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

HP-UX11i v Oracle9i DB. APPENDIX F. G. for Oracle9i /06

HP-UX11i v Oracle9i DB. APPENDIX F. G. for Oracle9i /06 HP-UX11i v2 11.23 + Oracle9i DB APPENDIX F. G. for Oracle9i 2 2004/06 F.... 2 orcl.sh... 3 init.ora... 4 CreateDB.sql... 5 CreateDBFiles.sql... 6 CreateDBCatalog.sql... 6 JServer.sql... 7 ordinst.sql...

More information

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY;

ALTER DATABASE RECOVER TO LOGICAL STANDBY KEEP IDENTITY; Using Physical Standby with transient Logical Standby (SQL Apply for near zero downtime upgrade of two node Oracle RAC database from 11.2.0.2 to 11.2.0.3 In the article you will have a look at an example

More information

Electronic Presentation

Electronic Presentation Oracle9i DBA Fundamentals I Electronic Presentation D11321GC10 Production 1.0 May 2001 D32645 I-1 Copyright Oracle Corporation, 2001. All rights reserved. I Introduction Copyright Oracle Corporation, 2001.

More information

9i RAC: Manual Backup and Recovery Shankar Govindan

9i RAC: Manual Backup and Recovery Shankar Govindan 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

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

Manual 12c Container Database

Manual 12c Container Database 1. SETUP init.ora db_block_size=8192 open_cursors=300 db_domain="" db_name="condb" control_files=("/pkg/moip/mo101/oracle/ctrl1/condb/control01.ctl", "/pkg/moip/mo101/oracle/ctrl2/condb/control02.ctl")

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

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

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

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

Create an Oracle8i Database in Windows

Create an Oracle8i Database in Windows The following instructions apply to Oracle 8i. This document assumes that you are familiar with the administration and use of Oracle and that you meet all Prerequisites. Please refer to the documentation

More information

DATA GUARD FSFO AND SWITCHOVER REFERENCE CONFIGURATION

DATA GUARD FSFO AND SWITCHOVER REFERENCE CONFIGURATION INDEX Alejandro Vargas Principal Support Consultant Oracle Advanced Customer Services Summary...3 NODE 1...4 Parameter Files...4 Listener.ora...4 Tnsnames.ora...5 init.ora...6 DGMGRL CONFIGURATION...8

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

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

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

INDEX SUMMARY...3 RMAN Check List...4 The Hands-On Environment...5 CATALOG...7

INDEX SUMMARY...3 RMAN Check List...4 The Hands-On Environment...5 CATALOG...7 Alejandro Vargas Principal Support Consultant Oracle Israel Support Services INDEX SUMMARY...3 RMAN Check List...4 The Hands-On Environment...5 CATALOG...7 1-set-catalog...8 2-create-catalog...9 3-register-database...10

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

How To Apply Archive Logs Manually In Standby Database Using Rman

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

More information

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

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

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

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

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

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

Upgrade Oracle Applications from to R12.1.1

Upgrade Oracle Applications from to R12.1.1 Upgrade Oracle Applications from 11.5.10.2 to R12.1.1 System Overview Version 11.5.10.2 Oracle Applications Vision Instance OS: Redhat Linux 4 update 5 Type: Single Node instance Applications OS User 11i

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

Agile e Installation Manual for Oracle 10g for Agile e6.0.2 on Windows. Part Number: INSORAUNIX-602A

Agile e Installation Manual for Oracle 10g for Agile e6.0.2 on Windows. Part Number: INSORAUNIX-602A Agile e6.0.2 Installation Manual for Oracle 10g for Agile e6.0.2 on Windows Part Number: INSORAUNIX-602A Copyrights and Trademarks Copyright 1992-2005 Agile Software Corporation. All rights reserved. You

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

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 Installation. and Configuration for Topobase

Oracle Installation. and Configuration for Topobase Oracle Installation and Configuration for Topobase 2009 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. The contents of this guide were created for Autodesk Topobase version 2010. The contents

More information

Oracle 1Z0-053 Exam Questions & Answers

Oracle 1Z0-053 Exam Questions & Answers Oracle 1Z0-053 Exam Questions & Answers Number: 1z0-053 Passing Score: 800 Time Limit: 120 min File Version: 23.8 http://www.gratisexam.com/ Oracle 1Z0-053 Exam Questions & Answers Exam Name: Oracle Database

More information

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

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

More information

Database Vault Installation and Configuration

Database Vault Installation and Configuration Best Practice Document Version: 1.0 2015-02-20 Installation and Configuration Guide Document History Version Date Change 1.0 2015-02-20 Document creation 2 2015 SAP SE or an SAP affiliate company. All

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

Oracle Database Migrating and Converting Non-CDBs to a PDB with a Different Endian Operating System. 18c

Oracle Database Migrating and Converting Non-CDBs to a PDB with a Different Endian Operating System. 18c Oracle Database Migrating and Converting Non-CDBs to a PDB with a Different Endian Operating System 18c E97288-02 September 2018 Oracle Database Migrating and Converting Non-CDBs to a PDB with a Different

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

A Robust Blueprint to Performance Optimization in Multiblock Databases. Anthony D. Noriega.

A Robust Blueprint to Performance Optimization in Multiblock Databases. Anthony D. Noriega. A Robust Blueprint to Performance Optimization in Multiblock Databases Anthony D. Noriega anthony@anthonynoriega.com Objective Discuss, and present a research overview on multiblock databases. Emphasize

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

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

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO

More information

Hand-On-Lab November 24, 2015

Hand-On-Lab November 24, 2015 Hand-On-Lab November 24, 2015 Oracle Database 12c - Upgrade, Migration & Consolidation Roy Swonger Senior Director and Product Manager ST Database Utilities ORACLE Corporation Mike Dietrich Senior Principal

More information

ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE

ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE Session id: 12766 ORACLE 10g/9i DATA GUARD LOGICAL STANDBY DATABASE Inderpal S. Johal Principal Consultant AGENDA Standby Database enhancements Data Guard and its Architecture Background Process Pre-requisite

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

Data Migration Customer Experiences

Data Migration Customer Experiences Data Migration Customer Experiences with Linux on System z David Simpson - Oracle Technical Specialist, IBM (simpson.dave@us.ibm.com) Copyright and Trademark Information For IBM can be found at http://www.ibm.com/legal/us/en/copytrade.shtml

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

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

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

More information

Oracle 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

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

1 Installation Issues and Recommendations

1 Installation Issues and Recommendations Oracle Database Vault Release Notes 10g Release 2 (10.2.0.5) for IBM AIX on POWER Systems (64-Bit) B32491-07 April 2013 These Release Notes describe issues you may encounter with Oracle Database Vault

More information

Oracle Audit Vault. 1 Downloading the Latest Version of This Document. 2 Installing the Oracle Audit Vault Patch Set on the Audit Vault Server

Oracle Audit Vault. 1 Downloading the Latest Version of This Document. 2 Installing the Oracle Audit Vault Patch Set on the Audit Vault Server Oracle Audit Vault Release Notes Patch Set 2 Release 10.2.3.2 E14466-02 November 2009 These Release Notes contain important information that was not included in the Oracle Audit Vault Patch Set 2 Release

More information

Oracle 10g Database Upgrade and Migration

Oracle 10g Database Upgrade and Migration Oracle 10g Database Upgrade and Migration Page 1 www.decus.de 1 Monika Dreher Product Technology Services ORACLE Corporation Agenda Upgrade to Oracle 10g Migrating to Oracle 10g Migration Resources Sample

More information

Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.)

Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.) Question: 1 Identify three components of an Oracle instance for which you can change the size dynamically. (Choose three.) A. Java Pool B. Large Pool C. Shared Pool D. Redo Log Buffer E. Database Buffer

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

Database Backup Solutions and Automatic Storage Management

Database Backup Solutions and Automatic Storage Management 1 Database Backup Solutions and Automatic Storage Management CERTIFICATION OBJECTIVES 1.01 Explain Oracle Backup and Recovery Solutions Q&A Two-Minute Drill Self Test 2 Chapter 1: Database Backup Solutions

More information

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

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

RMAN CHEAT SHEET 1 TECHGOEASY.COM. the version required by the RMAN executable. RMAN> UPGRADE CATALOG; Start command

RMAN CHEAT SHEET 1 TECHGOEASY.COM. the version required by the RMAN executable. RMAN> UPGRADE CATALOG; Start command Start command $ rman $ rman NOCATALOG $ rman TARGET SYS/pwd@target $ rman TARGET SYS/pwd@target NOCATALOG $ rman CATALOG rman/pwd@catdb $ rman TARGET=SYS/pwd@target CATALOG=rman/pwd@cat $ rman TARGET /

More information

Active RMAN duplicate clone 12c using section size and compress backupset. Overview of New PULL method

Active RMAN duplicate clone 12c using section size and compress backupset. Overview of New PULL method Active RMAN duplicate clone 12c using section size and compress backupset Overview of New PULL method The original push process is based on image copies.with Oracle Database 12c, a pull (or restore) process

More information

RAC parameter configuration overview

RAC parameter configuration overview RAC parameter configuration overview Miguel Anjo CERN Physics Databases Distributed Databases Operations Workshop November 2008 Objectives Raise the awareness how important t are the DB parameters depend

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

1 Installation Issues and Recommendations

1 Installation Issues and Recommendations Oracle Database Vault Release Notes 10g Release 2 (10.2.0.5) for Oracle Solaris on SPARC (64-Bit) B31293-08 April 2013 These Release Notes describe issues you may encounter with Oracle Database Vault 10g

More information

Oracle Database 18c. Vagrant + Oracle Linux Oracle Database 18c + Create DB. Oracle Linux 7.4 Install

Oracle Database 18c. Vagrant + Oracle Linux Oracle Database 18c + Create DB. Oracle Linux 7.4 Install Oracle Database 18c Vagrant + Oracle Linux 7.4 + Oracle Database 18c + Create DB www.bigdatalyn.com 88322511@qq.com 2018/03/01 Oracle Linux 7.4 Install Use vagrant box to install http://yum.oracle.com/boxes/

More information

Memory Management and Memory Structures

Memory Management and Memory Structures Memory Management and Memory Structures Oracle Database Memory Management Memory management - focus is to maintain optimal sizes for memory structures. Memory is managed based on memory-related initialization

More information

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

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

More information

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours What you will learn This course advances your success as an Oracle professional in the area of database administration.

More information

Avaya IQ 5.1 Database Server Configuration Recommendations And Oracle Guidelines

Avaya IQ 5.1 Database Server Configuration Recommendations And Oracle Guidelines Avaya IQ 5.1 Database Server Configuration Recommendations Avaya IQ Database Server Page 2 of 11 Issue 4.0 1. INTRODUCTION... 3 1.1 Purpose...3 1.2 BACKGROUND...3 1.3 Terminology...3 2. CONFIGURING IQ

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

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

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

More information

Oracle Architectural Components

Oracle Architectural Components Oracle Architectural Components Date: 14.10.2009 Instructor: Sl. Dr. Ing. Ciprian Dobre 1 Overview of Primary Components User process Shared Pool Instance SGA Server process PGA Library Cache Data Dictionary

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

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

Oracle RMAN for Absolute Beginners

Oracle RMAN for Absolute Beginners Oracle RMAN for Absolute Beginners Darl Kuhn Apress Contents About the Author Acknowledgments Introduction xvii xix xxi Chapter 1: Getting Started... 1 Connecting to Your Database 1 Establishing OS Variables

More information

IMPLEMENTING DATA GUARD (STANDBY)

IMPLEMENTING DATA GUARD (STANDBY) IMPLEMENTING DATA GUARD (STANDBY) General Concepts: Components, Roles, Interfaces Architecture Data Guard Protection Modes Physical Standby Implementation with RMAN (Recommended) Physical Standby Implementation

More information

Module 1 Oracle Architecture

Module 1 Oracle Architecture File=module1 architecture.htm; updated 5/13/2013 Figures shown in these notes are from Oracle Database Concepts 11g Release 2 Objectives Module 1 Oracle Architecture These notes introduce the Oracle server

More information

Selecting an Empower 2 Database Server

Selecting an Empower 2 Database Server TECN1852724 Rev. 01 Page 1 of 7 The Empower 2 application uses memory on the server to store information read from and inserted into the database. This document describes important information regarding

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