Maximum Availability Architecture

Size: px
Start display at page:

Download "Maximum Availability Architecture"

Transcription

1 Migrating Oracle E-Business Suite to Sun Oracle Database Machine Using Oracle Data Pump Oracle Maximum Availability Architecture White Paper June 2010 Maximum Availability Architecture Oracle Best Practices For High Availability

2

3

4 3

5 This paper will use existing Oracle Support notes to detail the process of migrating an existing Oracle E-Business Suite Release database to Sun Oracle Database Machine. The existing source system database can be RDBMS release 10.2 or higher, but this paper illustrates an example were the source system database is release Oracle Data Pump can be used for any supported source OS platforms with the minimum requirement of the source database being on release 10.2 or higher. Oracle E-Business Suite releases certified on Sun Oracle Database Machine configuration of OEL5 with Oracle Enterprise Edition release 11.2 are: (11i) The primary Oracle Support note being used for this example is ExportImport Process for Oracle E-Business Suite Release 12 Database Instances Using Oracle Database 11g Release 1 or 11g Release 2 [ID ]. This paper is a Sun Oracle Database Machine specific addendum to that Support note. Any special considerations not covered in the note will be included in this paper. If you are using Oracle E-Business Suite 11i then you should follow Oracle Support note Exportimport notes on Applications 11i Database 11g (ID ). The Oracle E-Business Suite Vision database that is part of the Oracle E-Business Suite Rapid Install was used for this example. The application tier nodes are not moved as part of this example and just re-directed to the new database on Sun Oracle Database machine using Autoconfig. Preparing properly for the migration will give you the necessary knowledge and confidence to complete a successful migration. While this is a migration, upgrade resources are also referenced as much of their content applies to a migration as well, especially if the source release is less than 4

6 11.2. Create a test plan that includes the best practices outlined in the Oracle Database 11g Release 2 Upgrade Companion Note: , and the following additional practices: Backup the source system and application tier. Preserve source system performance baseline information. See Upgrade to 11g Performance Best Practices for details. Stress test with real-life data and workloads Rehearse the migration and fallback procedures In addition to the above references, there are references throughout this paper to help you achieve a successful migration. Complete details for Oracle Data Pump can be found in the Oracle Database Utilities, 11g Release 2 (11.2) guide. As detailed in Support note , the high-level steps for migrating the Oracle E-Business Suite database to Sun Oracle Database Machine are: 1. Preparing the Source System This step ensures that the required patches are installed, generates the target database creation script, records any advanced queue settings and some other general preparation. 2. Preparing the Target Database Instance This section describes how to create the empty target database with RAC and ASM and populate it with all of the required system objects prior to running import. This section also discusses deciding on using a network file system or using the Oracle Database File System (DBFS) for the export dump files. 3. Exporting the Source Database This section describes how to create your export files and capture important information that is required to import your database. This is the step where the outage begins. 4. Importing This section describes how to use the Oracle Data Pump import utility to load the Oracle Applications data into the target database 5. Updating the Imported Database This section describes how to recreate the database objects and relationships that are not handled by the Oracle Data Pump export (expdp) and import (impdp) utilities. This section also details re-configuring Oracle E-Business Suite to utilize load balancing for the application connections. 5

7 This example does not include any unnecessary steps that are for pre 11.2 source systems. It does include additional details related to configuring RAC and ASM with Oracle E-Business Suite on the target Sun Oracle Database Machine. Thus, if your source system database is less than 11.2, then be sure to carefully review Support note completely as there are steps specific to 10.2 and 11.1 in Support note that are not covered in this case study. Support note should still be reviewed for an 11.2 source database, but this example case study shows the complete set of steps for that case. This document assumes that the application server tiers are not replaced. Creating new application server tiers for the target environment has to be done either before starting or after completing all the steps in this document. The details of the system environment can be found in the appendix at Environment Details. Standard Oracle E-Business Suite environment variables will be referenced. The Oracle E- Business Suite environment setup is done by sourcing the <APPL_TOP><SID_hostname>.env file. For this example an Oracle E-Business Suite release 12.1 rapid install with the Vision database was done. That installs a file-system based database with Oracle RDBMS Enterprise Edition Prior to the export process the source system database was upgraded to RDBMS 11.2, the steps in Interoperability Notes Oracle E-Business Suite Release 12 with Oracle Database 11g Release 2 (11.2.0), ID were followed and included the following application tier patches: maintenance pack Oracle E-Business Suite This is already part of the 12.1 rapid install so was not necessary to apply Oracle Techstack Release Update Pack 2 for 12.1 (R12.TXK.B.DELTA.2) INTEROPERABILITY PATCH FOR R ON 11.2 RDBMS ADBLDXML AND AUTOCONFIG COMPLETES WITH NJNI11:JAVA.LANG.UNSATISFIEDLINKERROR The same Support note, Interoperability Notes Oracle E-Business Suite Release 12 with Oracle Database 11g Release 2 (11.2.0), ID , will be used to setup the target system 11.2 database ORACLE_HOME. Thus, the details of what was done for that note in regard to the database will be included in the Preparing the Target Database Instance section. Apply patch to the source administration server node. This patch provides several SQL scripts that facilitate exporting and importing an Applications database instance. 6

8 For this example a working directory named ebsexpimp was created on network file system (NFS) storage. This working directory will contain all generated files and scripts required for the complete process. To use NFS you must ensure the correct mount options are used. For this example the mount command used was: As root: (on all 3 systems: 1) the source database, 2) the target database, and 3) the primary applications node) The details of the system environment can be found in the appendix at Environment Details. mkdir ebs chown oracle:dba ebs mount dscbbg03:export2 ebs o rsize=32768,wsize=32768,hard,actimeo=0 As oracle user (the software owner): mkdir ebsexpimp This mount point will be used on all three systems: the source database, the primary applications node, and the target database node. An alternative to using NFS storage is to use local storage and then use the Oracle Database File System (DBFS) on the target Sun Oracle Database Machine to hold the Oracle Data Pump exported dump files. See Oracle Database SecureFiles and Large Objects Developer's Guide 11g Release 2 (11.2) and Support note for setting up DBFS on Sun Oracle Database Machine. The target database instance must be created with the same tablespace structure as the source database instance. The exportimport patch, , provides the auclondb.sql script which generates the aucrdb.sql script, which you use to create the target database instance with the appropriate tablespace and file structure. The script converts all tablespaces except for SYSTEM to locally managed tablespaces with auto segment space management, if they are not already so. On the source administration server node, use SQL*Plus to connect to the database as SYSTEM and run the $AU_TOPpatch115sqlauclondb.sql script. It creates aucrdb.sql in the current directory. cd ebsexpimp sqlplus 11 Ensure that you do not have the rebuild index parameter in the spatial indexes. To see if you have any rebuild index parameters, on the source database server node, as the owner of the 7

9 source database server file system and database instance, use SQL*Plus to connect to the source database as sysdba and run the following command: sqlplus " as SQL> select * from dba_indexes where index_type='domain' and upper(parameters) like '%REBUILD%'; If any rows are returned then use SQL*Plus to connect to the source database as the owner of the index and run the following command: SQL> alter index <index_name> rebuild <parameters> where the parameters are dependent on the source index and can be referenced in the Oracle Database SQL Language Reference guide. This step is optional if you want to use the ORACLE_HOME that is installed with Sun Oracle Database Machine. It is completely valid to use the SUN ORACLE DATABASE MACHINE setup installed ORACLE_HOME but you should not share that ORACLE_HOME with other applications using the same Sun Oracle Database Machine. If you are installing a new 11.2 ORACLE_HOME set of software on the target Sun Oracle Database Machine make sure to choose the following options: Install Software Only Real Application Clusters database installation and select all RAC nodes a. Follow Support note , Database Machine and Exadata Storage Server 11g Release 2 (11.2) Supported Versions to ensure the latest Sun Oracle Database machine patches are applied. This will include the latest Opatch version (see Opatch - Where Can I Find the Latest Version of Opatch? [ID ] ) and also includes the Oracle E-Business Suite R12 bundle patch, patch, N-APPLY BUNDLE PATCH FOR RDBMS WITH EBS RELEASE 12. b. In addition to installing a new ORACLE_HOME, Support note was followed and since the application tier patches were already applied previously when the source system database was upgraded to 11.2, that is not necessary now. If you did not previously apply the applicaiton tier patches listed under Apply Prerequisite Patches then you should do that now. c. Patch, N-APPLY BUNDLE PATCH FOR RDBMS WITH EBS RELEASE 12 is required to be applied on the 11.2 database home. 8

10 d. Check and apply the latest 11.2 Patch Set Updates and Exadata patches, see Oracle Recommended Patches -- Oracle Database [ID ]. Patch Setup Updates also include the latest Critical Patch Update (CPU). 1. Download the software from 2. Follow the installation steps in the Database Examples Installation Guide in chapter 3 to install in the Oracle Database 11g Release 2 ORACLE_HOME. On the target system 11.2 ORACLE_HOME execute the following: perl $ORACLE_HOMEnlsdataoldcr9idata.pl Review Sun Oracle Database Machine best practices Support notes by searching My Oracle Support for Sun Database Machine Best Practices. If Sun Oracle Database Machine health has not been verified yet then follow Support note , Database Machine Health Check. Edit the script created in Generate target database instance creation script aucrdb.sql and change it to use the ASM diskgroup and add AUTOEXTEND ON to each datafile. You can also consolidate tablespace datafiles into a single or minimal number of files if desired. For example, if a tablespace has three datafiles of size 5G due to the fact that a default E_Business Suite install does not enable AUTOEXTEND, then you can consolidate those into a single 15G datafile. A sample of a modified aucrdb.sql script is in the appendix at Modified aucrdb.sql Script. The original did not have AUTOEXTEND set and the datafile paths were?dbf<datafilename>. The target database will be VISMIG and use the already created ASM diskgroups of +DATA and +RECO. The uniform extent size was left at the E-Business Suite setting of 128K. DDL to create the second UNDO tablespace was also added. An UNDO tablespace should be added for each instance. In this example there are two database instances on the target system. 1. Copy the source system (dscbac08) init.ora file from the $ORACLE_HOMEdbs directory to the target system. 9

11 On the target system (dscgigdb03) cd $ORACLE_HOMEdbs scp dscbac08:ebsvissidbtech_st11.2.0dbsinitvissi.ora initvismig.pfile 2. Edit the file to change file system paths with the new database name of VISMIG, the appropriate ASM diskgroup and add RAC parameters. The resulting file is included in the appendix at Target Database Starting Parameter File. Note that the CLUSTER_DATABASE parameter must be unset at database creation. For further details on database parameter settings see Support note , Database Initialization Parameters for Oracle Applications Release Run netca and create VISMIG listener selecting the Cluster Configuration. For this example the listener was named LISTENER_VISMIG. Use a new listener port as well. For this example 1524 was used. This will create a listener on each RAC node with the same name and add it to the RAC Oracle Cluster Registry (OCR). 2. Edit $ORACLE_HOMEnetworkadminlistener.ora on all nodes and add a static SID entry. See the example in the appendix at Initial listener.ora Files. 3. Reload the listener on all nodes lsnrctl reload listener_vismig 4. Status the listener to make sure it is running lsnrctl status LISTENER_VISMIG LSNRCTL for Linux: Version Production on 10-JUN :52:04 Copyright (c) 1991, 2009, Oracle. All rights reserved. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_VISMIG))) STATUS of the LISTENER Alias LISTENER_VISMIG Version TNSLSNR for Linux: Version Production Start Date 10-JUN :51:30 Uptime 0 days 0 hr. 0 min. 34 sec Trace Level off Security ON: Local OS Authentication SNMP OFF Listener Parameter File u01apporacleproduct11.2.0ebsmignetworkadminli stener.ora Listener Log File u01apporaclediagtnslsnrdscgigdb03listener_vismi galertlog.xml Listening Endpoints Summary... (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER_VISMIG))) (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST= )(PORT=1524))) (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST= )(PORT=1524))) The listener supports no services The command completed successfully 10

12 1. Ensure that the environment of your session on the target database system is set to the new ORACLE_SID of VISMIG1 and the ORACLE_HOME and ORA_NLS10 are also set to the target 11.2 location. export ORACLE_HOME=u01apporacleproduct11.2.0ebsmig export ORACLE_SID=VISMIG1 export ORA_NLS10=$ORACLE_HOMEnlsdata9idata export PATH=$ORACLE_HOMEbin:$PATH 2. Using the edited script from Modified aucrdb.sql Script and the parameter file from Target Database Starting Parameter File, create the database. cp $ORACLE_HOMEdbsinitVISMIG.pfile $ORACLE_HOMEdbsinitVISMIG1.ora cd ebsexpimp sqlplus " as sysdba" SQL> spool aucrdb.log; SQL> startup nomount; SQL> exit; The exportimport patch, patch , that you applied to the source administration server node in Apply the Applications consolidated exportimport utility patch contains four scripts that are needed on the target database server node. Copy the following files from the $AU_TOPpatch115sql directory of the source administration server node to the working directory in the target database server node: audb1120.sql, ausy1120.sql, aujv1120.sql, and aumsc1120.sql. These files were copied earlier in the Preparing the Source System section under the 5. Record Advanced Queue settings step, which copied all files from the source administration server $AU_TOPpatch115sql directory to the ebsexpimp NFS mounted file system. As you run each of the next four steps, note the following: The remarks section at the beginning of each script contains additional information. Each script creates a log file in the current directory. For sample output for the scripts see the Database Preparation Script Output section of the appendix. sqlplus " as sqlplus sqlplus 11

13 sqlplus FALSE SYSAUX TEMP sqlplus " as sysdba" SQL> exec ctxsys.ctx_adm.set_parameter('file_access_role', 'public'); Copy $APPL_TOPadminadstats.sql from the administration server node to the target database server node. Use SQL*Plus to connect to the database as SYSDBA and use the following commands to put the database in restricted mode and run adstats.sql: $ sqlplus " as sysdba" SQL> alter system enable restricted session; $ sqlplus " as sysdba" SQL> alter system disable restricted session; SQL> exit; 1. Set CLUSTER_DATABASE=TRUE in the databse parameter file, $ORACLE_HOMEdbsinitVISMIG1.ora *.cluster_database=true 2. Copy current database parameter file to a.pfile file cp $ORACLE_HOMEdbsinitVISMIG1.ora $ORACLE_HOMEdbsinitVISMIG1.pfile2 3. Create the SPFILE create spfile='+datavismigspfilevismig.ora' from pfile='$oracle_homedbsinitvismig1.pfile2'; File created. 4. Create database parameter file, $ORACLE_HOMEdbsinitVISMIG1.spfile, that points to the new SPFILE spfile='+datavismigspfilevismig.ora' 5. Copy the new.spfile to the database parameter file cp $ORACLE_HOMEdbsinitVISMIG1.spfile $ORACLE_HOMEdbsinitVISMIG1.ora 6. Restart the database 7. Copy the database parameter file to the other node(s) with the appropriate name. In this case study, dscgigdb04 is te second RAC node (see Environment Details for details). scp initvismig1.ora dscgigdb04:`pwd`initvismig2.ora initvismig1.ora 100% KBs 00:00 8. Restart the database so it will use the SPFILE 12

14 cd $ORACLE_HOMEdbs orapwd file=orapw${oracle_sid} password=welcome1 1. Add the database and ORACLE_SID to etcoratab on each node VISMIG:u01apporacleproduct11.2.0ebsmig:N On dscgigdb03: VISMIG1:u01apporacleproduct11.2.0ebsmig:N On dscgigdb04: VISMIG2:u01apporacleproduct11.2.0ebsmig:N 2. Ensure an undo tablespace exists for each database instance select tablespace_name from dba_tablespaces where contents='undo'; TABLESPACE_NAME UNDO_TBS1 UNDO_TBS2 3. Create an additional redo thread and redo logs for each database instance a. Get the redo log size and maximum group number SQL> select distinct bytes from v$log; BYTES SQL> select max(group) from v$log; MAX(GROUP) b. Add redo logs for other thread(s) alter database add logfile instance VISMIG2 group 4 ('+DATA') size 300M, group 5 ('+DATA') size 300M, group 6 ('+DATA') size 300M; c. Enable the new thread alter database enable thread 2; 4. Add the database and instances to the Oracle Cluster Registry (OCR) srvctl add database -d VISMIG -o u01apporacleproduct11.2.0dbhome_2 - a "DATA,RECO" srvctl add instance -d VISMIG -i VISMIG1 -n dscgigdb03 srvctl add instance -d VISMIG -i VISMIG2 -n dscgigdb04 5. Verify srvctl is working for the database srvctl stop database -d VISMIG srvctl start database -d VISMIG srvctl status database -d VISMIG Instance VISMIG1 is running on node dscgigdb03 Instance VISMIG2 is running on node dscgigdb04 13

15 Use the script at Verify Required Packages to verify that all required operating system packages are installed and install any missing packages as described later in the Verify Required Packages section. HugePages are not configured by default on Sun Oracle Database Machine. They do show performance improvement for OLTP applications such as Oracle E-Business Suite. The performance improvement was not measured as part of this paper, but unpublished results have indicated 10% or greater performance improvement. Additionally, enabling HugePages reduces the amount of kernel memory required to map page table entries for the SGA, makes the shared memory segments non-swappable and reduces process startup time. Note that HugePages that are allocated and unused means wasted memory that can t be used for anything else and if the DBA happens to tweak the SGA size such that it exceeds the available HugePages by a small amount, then the database doesn t use any HugePages and all the memory allocated to HugePages goes to waste. Thus, take care in sizing HugePages. Follow Support note , How to Configure HugePages for Oracle Database on 64- bit Linux Platforms. Ensure that when running the recommended script provided with Note that the database is started. Note that the Automatic Memory Management feature, enabled by the MEMORY_TARGET MEMORY_MAX_TARGET database parameters, is incompatible with the use of HugePages. The Automatic Shared Memory Management feature, enabled by setting SGA_TARGET, IS compatible with HugePages. For RDBMS there is an additional workaround required that is described in Support note The target database is now prepared for an import of the Applications data. You should perform a backup before starting the import. Advanced Queue settings are not propagated in the target database during the exportimport process. Therefore, you must record them beforehand and enable them in the target database instance afterwards. The exportimport patch, , contains auque1.sql, which generates a script called auque2.sql. You can use auque2.sql to enable the settings in the target database instance. 14

16 Copy the auque1.sql script from the $AU_TOPpatch115sql directory on the source administration server node to the working directory in the source database server node. Then, on the source database server node, as the owner of the source database server file system and database instance, use SQL*Plus to connect to the source database as sysdba and run the auque1.sql script. It generates auque2.sql. On source administration server: cp $AU_TOPpatch115sql ebsexpimp On the source Database system: sqlplus " as 2. A template for the export parameter file has been included as part of the exportimport patch, Copy $AU_TOPpatch115importauexpdp.dat from the source administration server node to the working directory, ebsexpimp, in the source database server node. Use a text editor to modify the file to reflect the source environment and other customized parameters. Add the following two parameters to the Oracle Data Pump export parameter file: METRICS=Y The METRICS=Y option of the export parameter file will give you a number of seconds for each Processing step. The output will be of the form: Processing object type DATABASE_EXPORTTABLESPACE Completed 70 TABLESPACE objects in 1 seconds PARALLEL=16 This option was not compared to a non-parallel run so there is no conclusive evidence to the impact. The PARALLEL option is most useful for jobs with a lot of data relative to metadata. For a detailed discussion see Support note , Parallel Capabilities of Oracle Data Pump. If your source database is Oracle Database 11g (11.1 or 11.2), add the following line to the parameter file: QUERY=applsys.wf_item_attribute_values:"where item_type!='wferror' and name!= 'EVENT_MESSAGE'" See Export Parameter File for the file contents $ sqlplus system SQL> create directory dmpdir_exp as 'ebsexpimp'; 15

17 Shut down all Applications server processes except the database and the Net8 listener for the database. Users cannot use the Applications until the import is completed. $INST_TOPadminscriptsadstpall.sh Since the database port, host, SID, and database name parameter will all change on the database server, deregister the current database server node by running the following command as the owner of the Oracle RDBMS file system and current database instance: $ perl $ORACLE_HOMEappsutilbinadgentns.pl appspass=apps contextfile=$context_file -removeserver Grant the exempt access policy privilege to system by using SQL*Plus to connect to the database as SYSDBA and run the following command: sqlplus " as sysdba" SQL> grant EXEMPT ACCESS POLICY to system; To avoid ORA errors, excue the following: sqlplus as sysdba SQL> execute dbms_metadata_util.load_stylesheets Start an export session on the source database server node using the customized export parameter file. Go to the working directory: cd ebsexpimp If the source database is or , use the following command: expdp system parfile=auexpdp.dat If the source database is , as it is in this example, use the following command: expdp "' as sysdba'" parfile=auexpdp.dat The METRICS=Y option of the export parameter file will give you a number of seconds for each Processing step. The output will be of the form: Processing object type DATABASE_EXPORTTABLESPACE Completed 70 TABLESPACE objects in 1 seconds 16

18 The export log does not capture timestamp information for each output line though, so if it s desired to gather complete timing information use the Timestamp Script in the appendix to prefix the export log output with a timestamp. An example of that would be: tailtime expdpapps.log > expdpapps_time.log The output in expdpapps_time.log will then have the form: :42:07 Processing object type DATABASE_EXPORTSCHEMATABLETRIGGER The export for the Vision database took 7:42:29 (hours:minutes:seconds). See Export Timings for details. Revoke the exempt access policy privilege from system by using SQL*Plus to connect to the database as SYSDBA and run the following command: SQL> revoke EXEMPT ACCESS POLICY from system; To reiterate, this example does not include any unnecessary steps that are for pre 11.2 source systems. It does include additional details related to configuring RAC and ASM with Oracle E- Business Suite on the target Sun Oracle Database Machine. If your source system database is less than 11.2, then be sure to review Support note completely as there are 10.2 and 11.1 specific steps. Copy auimpdp.dat from the $AU_TOPpatch115import directory in the source administration server node to the working directory, ebsexpimp, in the target database server node. Make sure that the directory, dumpfile, and logfile parameters in auimpdp.dat are set properly. Use a text editor to modify the file to reflect the source environment and other customized parameters. The following two parameters were added to the parameter file: METRICS=Y The METRICS=Y option of the export parameter file will give you a number of seconds for each Processing step. The output will be of the form: Processing object type DATABASE_EXPORTTABLESPACE Completed 70 TABLESPACE objects in 1 seconds PARALLEL=16 This option was not compared to a non-parallel run so there is no conclusive evidence to the impact. The PARALLEL option is most useful for jobs with a lot of data relative to metadata. For a detailed discussion see Support note , Parallel Capabilities of Oracle Data Pump. 17

19 See Import Parameter File for the file contents $ sqlplus system SQL> create directory dmpdir_mig as 'ebsexpimp'; This example is using an NFS storage area that is shared between the source and target system so this step was not necessary. If the Oracle Database File System (DBFS) is being used then it is necessary to use secure copy (scp) the files into the DBFS location. About 40% of the time can be saved by doing parallel copies. See DBFS Parallel Copy Script for an example script. Note that if NFS is being used then follow Support note , ORA ORA And Ora Erorrs On Invoking Data Pump Import, and set the following database parameter event: event="10298 trace name context forever, level 32" Start an import session on the target database server node using the auimpdp.dat parameter file. impdp "' as sysdba'" parfile=auimpdp.dat The METRICS=Y option of the import parameter file will give you a number of seconds for each Processing step. The output will be of the form: Processing object type DATABASE_EXPORTTABLESPACE Completed 70 TABLESPACE objects in 1 seconds The import log does not capture timestamp information for each output line though, so to gather timing information use the Timestamp Script in the appendix to prefix the import log output with a timestamp. An example of that would be: tailtime impdpapps.log > impdpapps_time.log The output in impdpapps_time.log will then have the form: :34:12 Processing object type DATABASE_EXPORTSCHEMATABLETABLE The import of the Vision database took 16:11:58 (hours:minutes:seconds). See Import Timings for details. 6. Revoke the exempt access policy privilege from system by using SQL*Plus to connect to the database as SYSDBA and run the following command: 18

20 SQL> revoke EXEMPT ACCESS POLICY from system; ORA-31684: Object type <> already exists ORA-39111: Dependent object type <Object Type> skipped, base object type <Base object type> already exists ORA-39151: Table "<table name>" exists. All dependent metadata and data will be skipped due to table_exists_action of skip ORA-1543 errors, tablespace already exists" Action: Ignore Action: handled post-import under Compile invalid objects ORA-39083: Object type TABLE_STATISTICS failed to create with error: ORA-06550: line 1, column 555: PLS-00103: Encountered the symbol "~" when expecting one of the following: Action: gather index statistics manually. 4. ORA-39083: Object type TRIGGER failed to create with error: ORA-04072: invalid trigger type Failing sql is: BEGIN DBMS_DDL.SET_TRIGGER_FIRING_PROPERTY('"B2B"','"IPR_LOGON"',FALSE) ; END; ORA-39083: Object type TRIGGER failed to create with error: ORA-04072: invalid trigger type Failing sql is: BEGIN DBMS_DDL.SET_TRIGGER_FIRING_PROPERTY('"ORASSO"','"LOGOFF_TRIGGER"',FALSE) ; END; Action: Ignore Noted to give an idea of the total number of errors encountered with the Vision database import. Use the auque2.sql script that was generated in Record Advanced Queue settings of the Preparing the Source System section in the NFS mounted working directory ebsexpimp. 19

21 On the target database server node, as the owner of the Oracle 11g file system and database instance, use SQL*Plus to connect to the target database as SYSDBA and run the auque2.sql script to enable the Advanced Queue settings that were lost during the exportimport process. The script creates a log file in the current directory. cd ebsexpimp $ sqlplus nolog SQL> connect as sysdba; Source the $ORACLE_HOME<SID_hostname>.env file. Example on dscgigdb03: source $ORACLE_HOMEVISMIG1_dscgigdb03.env on dscgigdb04: source $ORACLE_HOMEVISMIG2_dscgigdb04.env The listeners should already be running but if they are not then start them now: srvctl start listener l listener_vismig Copy $APPL_TOPadminadgrants.sql from the administration server node to the working directory, ebsexpimp, in the database server node. Use SQL*Plus to connect to the database as SYSDBA and run the script using the following command: sqlplus " as APPS Copy $AD_TOPpatch115sqladctxprv.sql from the administration server node to the database server node. Use SQL*Plus to connect to the database as APPS and run the script using the following command: sqlplus welcome1 CTXSYS On application administration node: 1. Generate the appsutil.zip for the database tier, run the following command: perl $AD_TOPbinadmkappsutil.pl 2. Copy the appsutil.zip file to each DB server node ORACLE_HOME scp ebsvissiinstappsvissi_haovm021adminoutappsutil.zip dscgigdb03:u01apporacleproduct11.2.0ebsmig scp ebsvissiinstappsvissi_haovm021adminoutappsutil.zip dscgigdb04:u01apporacleproduct11.2.0ebsmig 20

22 On the target database node: 3. As the APPS user, run the following command on the primary node to de-register the current configuration: SQL>exec fnd_conc_clone.setup_clean; Install appsutil.zip on each target database node: 4. cd $ORACLE_HOME 5. unzip -o appsutil.zip 6. Generate a new context file perl $ORACLE_HOMEappsutilbinadbldxml.pl The context file has been created at: u01apporacleproduct11.2.0ebsmigappsutilvismig1_dscgigdb03.xml 7. Set the value of s_virtual host_name to point to the virtual hostname for the database host, by editing the database context file $ORACLE_HOMEappsutilVISMIG1_dscgigdb03.xml <host oa_var="s_virtual_hostname">dscgig03-vip<host> <host oa_var="s_virtual_hostname">dscgig04-vip<host> 8. Run autoconfig on each database node $ORACLE_HOMEappsutilbinadconfig.sh contextfile=u01apporacleproduct11.2.0ebsmigappsutilvismig1_dscg igdb03.xml Or more generically if the $ORACLE_HOME<ORACLE_SID_hostname>.env file has been source $ORACLE_HOMEappsutilbinadconfig.sh contextfile=$context_file... Using Context file : u01apporacleproduct11.2.0ebsmigappsutilvismig1_dscgigdb03.xml Context Value Management will now update the Context file Updating Context file...completed Attempting upload of Context file and templates to database...completed Updating rdbms version in Context file to db112 Updating rdbms type in Context file to 64 bits Configuring templates from ORACLE_HOME... AutoConfig completed successfully. 9. Revise the listener on each database node The reason the listener requires revision is: In 11.2, listeners are configured at the cluster level, and all nodes inherit the port and environment settings. This means that the TNS_ADMIN directory path will be the same on all nodes. 21

23 The current version of AutoConfig creates a listener.ora file under the $ORACLE_HOMEnetworkadmin<context-name> directory with listener names of the form listener_<hostname>, i.e. different listener names on each node in the cluster. Due to this, manual editing of the listener configuration file is required following the run of Autoconfig on the database nodes. This issue will be addressed in a future version of AutoConfig by creating a user-defined context variable. Until then, this post-autoconfig workaround is required to have the listener managed by CRS via the srvctl utility. At present, AutoConfig does not support SCAN listeners. This will be addressed in a future version of AutoConfig. i. On each database node modify the listener name, LISTENER_<hostname>, in the Autoconfig generated listener.ora file, $ORACLE_HOMEnetworkadmin<contextname>listener.ora, to match the previously netca created listener name, LISTENER_VISMIG. So for example, on dscgigdb03 the $ORACLE_HOMEnetworkadminVISMIG1_dscgigdb03listener.ora file is modified changing all occurrences of LISTENER_DSCGIGDB03 to LISTENER_VISMIG. For the resulting files see Modified Post Autoconfig listener.ora files. ii. On each database node add an ifile entry to $ORACLE_HOMEnetworkadminlistener.ora to point to the prior Autoconfig modified files under $ORACLE_HOMEnetworkadmin<context-name>listener.ora e.g. IFILE=u01apporacleproduct11.2.0ebsmignetworkadminVISMIG1_dscgigd b03listener.ora See Modified Post Autoconfig listener.ora files for the resultant files. iii. Set the listener environment in OCR srvctl setenv listener -l listener_vismig T TNS_ADMIN=$ORACLE_HOMEnetworkadmin iv. Set the database environment in OCR srvctl setenv database -d VISMIG -T TNS_ADMIN=$ORACLE_HOMEnetworkadmin v. Edit the DB environment file and change TNS_ADMIN vi $ORACLE_HOME${ORACLE_SID}_`hostname s`.env and set TNS_ADMIN= $ORACLE_HOMEnetworkadmin vi. Make sure the listener can stopped and started with srvctl srvctl stop listener -l listener_vismig srvctl start listener -l listener_vismig 1. Edit SID=<Instance 1> and PORT=<New listener port > in $TNS_ADMINtnsnames.ora file, to set up a connection to one of the instances in the Oracle RAC environment. 22

24 2. Verify the connection sqlplus systemwelcome1 3. Edit the context variable in $CONTEXT_FILE, jdbc_url, adding the instance name to the connect_data parameter. Before <jdbc_url DRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=ds cbac08.us.oracle.com)(port=1523)))(connect_data=(service_name=vissi)))<jd bc_url> After <jdbc_url (ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(H OST=dscgig03- vip.us.oracle.com)(port=1524)))(connect_data=(service_name=vismig)))<j dbc_url> 4. Run Autoconfig $INST_TOPadminscriptsadautocfg.sh 1. Copy $APPL_TOPadminadstats.sql from the administration server node to the database server node work directory, cp $APPL_TOPadminadstats.sql ebsexpimp 2. Run the script sqlplus " as sysdba" alter system enable restricted sqlplus " as sysdba" alter system disable restricted session; perl $AU_TOPpatch115bindpost_imp.pl ctx_az_obj.drv 11 Once the driver file has been generated, use AutoPatch (adpatch) to apply it on the target administration server node. To populate the CTXSYS.DR$SQE table, use SQL*Plus on the database server node to connect to the Applications database instance as APPS and run the following command: $ sqlplus apps SQL> exec icx_cat_sqe_pvt.sync_sqes_for_all_zones; 23

25 On the target database server node, as the owner of the Oracle 11g file system and database instance, use SQL*Plus to connect to the target database as SYS and run the $ORACLE_HOMErdbmsadminutlrp.sql script to compile invalid objects. $ sqlplus " as Run AD Administration (adadmin) on the target administration server node. From the Maintain Applications Database Objects menu, perform the following tasks: Start all the server processes on the target Applications system. You can allow users to access the system at this time. $INST_TOPadminscriptsadstrtal.sh Create DQM indexes by following these steps: Login with operationswelcome and then select "Trading Community Manager" 24

26 Oracle Support note was used as the basis for these steps. Implement load balancing for the Oracle Applications database connections: This example uses the Context Editor. To access the Context Editor: From Applications tier node $TNS_ADMINtnsnames.ora VISMIG_BALANCE= (DESCRIPTION= (ADDRESS_LIST= (LOAD_BALANCE=YES) (FAILOVER=YES) (ADDRESS=(PROTOCOL=tcp)(HOST=dscgig04-vip.us.oracle.com)(PORT=1524)) (ADDRESS=(PROTOCOL=tcp)(HOST=dscgig03-vip.us.oracle.com)(PORT=1524)) ) (CONNECT_DATA= (SERVICE_NAME=VISMIG) ) ) "Tools OH TWO_TASK" (s_tools_two_task) is under the Environments tab under oa_environment:tools_home "ias OH TWO_TASK" (s_weboh_twotask) is under the Environments tab under oa_environment:web_home "Apps JDBC Connect Alias" (s_apps_jdbc_connect_alias) is under the System tab under oa_web_server In the Context Editor search on the value of VISMIG_BALANCE and you should see the following after changes: 25

27 $INST_TOPadminscriptsadautocfg.sh A successful migration of Oracle E-Business Suite to Sun Oracle Database Machine is dependent upon thorough preparation that includes planning, testing, and review of all the steps involved. The intent of this paper was to illustrate the steps to migrate an existing Oracle E-Business Suite installation s database to Sun Oracle Database Machine using Oracle Data Pump. The process entails referring to multiple Oracle Support notes that are referenced herein with explicit examples included. Any improvements to this process will be updated in this paper and reposted to the Maximum Availability Architecture website at 26

28 The hardware and software details for the test environment are as follows: Single node, single instance install Name: dscbac08 Oracle Enterprise Linux el5. x86_64 Oracle Enterprise Edition ORACLE_HOME=ebsVISSIdbtech_st DB_NAME=VISSI ORACLE_SID=VISSI NFS mounted storage from dscbbg03:export2 on ebs Name: haovm021.us.oracle.com Oracle Enterprise Linux x86_64 E_Business Suite Version ORACLE_HOME ebsvissiappstech_st $APPL_TOP ebsvissiappsapps_stappl $INST_TOP ebsvissiinstappsvissi_haovm021 NFS mounted storage from dscbbg03:export2 on ebs Compute Nodes Names: dscgigdb03 and dscgigdb04 IP Addresses - dscgigdb dscgig03-vip dscgigdb dscgig04-vip ORACLE_HOME u01apporacleproduct11.2.0ebsmig 27

29 ORACLE_SID=VISMIG1 and VISMIG2 respectively DB_NAME=VISMIG Each with: Oracle Enterprise Linux el5 x86_64 Oracle Enterprise Edition Quad-Core Intel Xeon E5540 Processors (2.53 GHz) 72 GB memory Disk Controller HBA with 512MB Battery Backed Write Cache 4 x 146 GB SAS 10,000 RPM disks Dual-Port QDR InfiniBand Host Channel Adapter 4 Embedded Gigabit Ethernet Ports Storage: 3 Exadata Cells (dscgigcel05-07) Each cell with: 2 Quad-core Intel Xeon E5540 (2.53GHz) processors Exadata Smart Flash Cache 384 GB 12 x 1TB 7,200 RPM SATA drives NFS mounted storage from dscbbg03:export2 on ebs Here is a sample check of the required packages on a fresh Sun Oracle Daatabase Machine. For the latest list of required packages also see Support note Oracle Applications Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID ]. $ rpm -q --qf '%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n' \ openmotif21 xorg-x11-libs-compat binutils gcc gcc-c++ glibc \ glibc-common glibc-devel libgcc libstdc++-devel libstdc++ make \ gdbm libxp libaio libgomp sysstat compat-libstdc \ compat-libstdc++-33 package openmotif21 is not installed package xorg-x11-libs-compat is not installed binutils el5 (x86_64) gcc el5 (x86_64) gcc-c el5 (x86_64) glibc (i686) glibc (x86_64) glibc-common (x86_64) glibc-devel (i386) glibc-devel (x86_64) libgcc el5 (i386) 28

30 libgcc el5 (x86_64) libstdc++-devel el5 (i386) libstdc++-devel el5 (x86_64) libstdc el5 (i386) libstdc el5 (x86_64) make el5 (x86_64) gdbm (x86_64) gdbm (i386) libxp el5 (i386) libxp el5 (x86_64) libaio (i386) libaio (x86_64) libgomp el5 (i386) libgomp el5 (x86_64) sysstat el5 (x86_64) compat-libstdc (i386) compat-libstdc (i386) compat-libstdc (x86_64) For any missing or older packages, see $ rpm -ivh xorg-x11-libs-compat el i386.rpm Preparing... [100%] 1:xorg-x11-libs-compat [100%] $ rpm -ivh openmotif el5.i386.rpm Preparing... [100%] 1:openmotif21 [100%] This script was originally generated on the source system using the $AU_TOPpatch115sqlauclondb.sql script. The source system was using the file system for the datafile paths of the form?dbf<datafile-name> and no AUTOEXTEND setting. Additionally, many of the tablespaces had multiple datafiles for relatively small sizes. The addition of AUTOEXTEND ON and the consolidation of the datafiles was done manually. The change of the datafile paths to the ASM +DATA diskgroup with the DB_NAME of VISMIG was done within the VI editor using the following command: : %s?\dbf+data\vismig\g 29

31 REM =========================================================================== REM REM NAME REM aucrdb.sql REM REM DESCRIPTION REM REM Script to create a database with tablespaces and files REM similar to that of the database against which the script REM was generated. REM REM Database Instance : VISSI REM Database Version : REM Creation Date : 03-JUN :48:23 REM REM NOTES REM BEFORE RUNNING THE SCRIPT YOU MUST REVIEW REM IT FOR THE FOLLOWING : REM - Database Characterset information REM - Location and size of the data files REM - Tablespace storage information REM - Rollback Segment information REM REM =========================================================================== REM REM Create Database REM CREATE DATABASE MAXS 512 CHARACTER SET AL32UTF8 NATIONAL CHARACTER SET UTF8 LOGFILE GROUP 1 ( '+DATAVISMIGONLINELOGlog3.dbf' ) SIZE 300M, GROUP 2 ( '+DATAVISMIGONLINELOGlog2.dbf' ) SIZE 300M, GROUP 3 ( '+DATAVISMIGONLINELOGlog1.dbf' ) SIZE 300M '+DATAVISMIGdatafileSYSTEM01.dbf' SIZE 20491M AUTOEXTEND ON SYSAUX '+DATAVISMIGdatafilesysaux01.dbf' SIZE 1339M AUTOEXTEND ON UNDO TABLESPACE "UNDO_TBS1" '+DATAVISMIGdatafileundotbs1_01.dbf' SIZE 3700M AUTOEXTEND ON DEFAULT TEMPORARY TABLESPACE "TEMP2" TEMPFILE '+DATAVISMIGdatafiletemp2_01.dbf' SIZE 18000M AUTOEXTEND ON, '+DATAVISMIGdatafiletemp2_02.dbf' SIZE 18000M AUTOEXTEND ON UNIFORM SIZE 1M CREATE TEMPORARY TABLESPACE "TEMP1" TEMPFILE '+DATAVISMIGdatafiletemp1_01.dbf' SIZE 18000M AUTOEXTEND ON, 30

32 '+DATAVISMIGdatafiletemp1_02.dbf' SIZE 18000M AUTOEXTEND ON UNIFORM SIZE 1M ALTER TABLESPACE "TEMP2" TABLESPACE GROUP "TEMP"; ALTER TABLESPACE "TEMP1" TABLESPACE GROUP "TEMP"; ALTER DATABASE DEFAULT TEMPORARY TABLESPACE "TEMP"; prompt prompt Ignore any errors related to the setting prompt of the default temporary tablespace prompt REM REM Create Tablespaces REM CREATE TABLESPACE "APPS_CALCLIP" '+DATAVISMIGdatafileapps_calclip.dbf' SIZE 5000M AUTOEXTEND ON CREATE TABLESPACE "APPS_OMO" '+DATAVISMIGdatafileAPPS_OMO02.dbf' SIZE 1200M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_ARCHIVE" '+DATAVISMIGdatafilearchive1.dbf' SIZE 1200M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_DISCO" '+DATAVISMIGdatafiledisco1.dbf' SIZE 906M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_DISCO_OLAP" '+DATAVISMIGdatafiledisco_drake1.dbf' SIZE 1350M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_INTERFACE" '+DATAVISMIGdatafileapps_ts_interface.dbf' SIZE 3000M AUTOEXTEND ON 31

33 CREATE TABLESPACE "APPS_TS_MEDIA" '+DATAVISMIGdatafilemedia1.dbf' SIZE 7000M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_NOLOGGING" '+DATAVISMIGdatafilenologging1.dbf' SIZE 700M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_QUEUES" '+DATAVISMIGdatafileAPPS_TS_QUEUES02.dbf' SIZE 5000M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_SEED" '+DATAVISMIGdatafilereference1.dbf' SIZE 4000M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_SUMMARY" '+DATAVISMIGdatafileAPPS_TS_SUMMARY02.dbf' SIZE 23000M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_TX_DATA" '+DATAVISMIGdatafileAPPS_TS_TX_DATA_01.dbf' SIZE 16000M AUTOEXTEND ON, '+DATAVISMIGdatafileAPPS_TS_TX_DATA_02.dbf' SIZE 16000M AUTOEXTEND ON CREATE TABLESPACE "APPS_TS_TX_IDX" '+DATAVISMIGdatafileAPPS_TS_TX_IDX01.dbf' SIZE 21000M AUTOEXTEND ON, '+DATAVISMIGdatafileAPPS_TS_TX_IDX02.dbf' SIZE 21000M AUTOEXTEND ON CREATE TABLESPACE "B2B_DT" 32

34 '+DATAVISMIGdatafileb2b_dt.dbf' SIZE 72M AUTOEXTEND ON CREATE TABLESPACE "B2B_IDX" '+DATAVISMIGdatafileb2b_idx.dbf' SIZE 17M AUTOEXTEND ON CREATE TABLESPACE "B2B_LOB" '+DATAVISMIGdatafileb2b_lob.dbf' SIZE 13M AUTOEXTEND ON CREATE TABLESPACE "B2B_RT" '+DATAVISMIGdatafileb2b_rt.dbf' SIZE 45M AUTOEXTEND ON CREATE TABLESPACE "BAM" '+DATAVISMIGdatafilebam.dbf' SIZE 8M AUTOEXTEND ON CREATE TABLESPACE "BIA_RTL" '+DATAVISMIGdatafilebia_rtl.dbf' SIZE 1000M AUTOEXTEND ON CREATE TABLESPACE "CTXSYS" '+DATAVISMIGdatafilectx1.dbf' SIZE 92M AUTOEXTEND ON CREATE TABLESPACE "CWMLITE" '+DATAVISMIGdatafilecwmlite01.dbf' SIZE 50M AUTOEXTEND ON CREATE TABLESPACE "DATA" 33

35 '+DATAVISMIGdatafiledata01.dbf' SIZE 7500M AUTOEXTEND ON CREATE TABLESPACE "DCM" '+DATAVISMIGdatafiledcm.dbf' SIZE 300M AUTOEXTEND ON CREATE TABLESPACE "DEMANTRA" '+DATAVISMIGdatafileDEMANTRA02.dbf' SIZE 5500M AUTOEXTEND ON CREATE TABLESPACE "DISCO_PTM5_CACHE" '+DATAVISMIGdatafilediscopltc1.dbf' SIZE 114M AUTOEXTEND ON CREATE TABLESPACE "DISCO_PTM5_META" '+DATAVISMIGdatafilediscopltm1.dbf' SIZE 3M AUTOEXTEND ON CREATE TABLESPACE "DSGATEWAY_TAB" '+DATAVISMIGdatafileoss_sys01.dbf' SIZE 7M AUTOEXTEND ON CREATE TABLESPACE "DW_AGGREGATE_IDX" '+DATAVISMIGdatafiledw_aggregate_idx.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_AGGREGATE_TBS" '+DATAVISMIGdatafiledw_aggregate_tbs.dbf' SIZE 100M AUTOEXTEND ON 34

36 CREATE TABLESPACE "DW_BASE_IDX" '+DATAVISMIGdatafiledw_base_idx.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_BASE_TBS" '+DATAVISMIGdatafiledw_base_tbs.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_DERIVED_IDX" '+DATAVISMIGdatafiledw_derived_idx.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_DERIVED_TBS" '+DATAVISMIGdatafiledw_derived_tbs.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_DM_TBS" '+DATAVISMIGdatafiledw_dm_tbs.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_LOOKUP_TBS" '+DATAVISMIGdatafiledw_lookup_tbs.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_MVLOG_TBS" '+DATAVISMIGdatafiledw_mvlog_tbs.dbf' SIZE 100M AUTOEXTEND ON CREATE TABLESPACE "DW_REFERENCE_IDX" '+DATAVISMIGdatafiledw_reference_idx.dbf' SIZE 100M AUTOEXTEND ON 35

37 CREATE TABLESPACE "DW_REFERENCE_TBS" '+DATAVISMIGdatafiledw_reference_tbs.dbf' SIZE 134M AUTOEXTEND ON CREATE TABLESPACE "GEOR_TBS" '+DATAVISMIGdatafileapps_ts_spatial.dbf' SIZE 3000M AUTOEXTEND ON CREATE TABLESPACE "HTMLDB" '+DATAVISMIGdatafilehtmldb.dbf' SIZE 600M AUTOEXTEND ON CREATE TABLESPACE "IAS_META" '+DATAVISMIGdatafileIAS_META02.dbf' SIZE 300M AUTOEXTEND ON CREATE TABLESPACE "MTR" '+DATAVISMIGdatafileopmtr01.dbf' SIZE 4M AUTOEXTEND ON CREATE TABLESPACE "OCATS" '+DATAVISMIGdatafileoca.dbf' SIZE 3M AUTOEXTEND ON CREATE TABLESPACE "ODM_DATA" '+DATAVISMIGdatafileodm.dbf' SIZE 40M AUTOEXTEND ON CREATE TABLESPACE "OLAP_BAAD" '+DATAVISMIGdatafileolap_baad01.dbf' SIZE 1500M AUTOEXTEND ON 36

38 CREATE TABLESPACE "OLTS_ATTRSTORE" '+DATAVISMIGdatafileattrs1_oid.dbf' SIZE 15M AUTOEXTEND ON CREATE TABLESPACE "OLTS_BATTRSTORE" '+DATAVISMIGdatafilebattrs1_oid.dbf' SIZE 15M AUTOEXTEND ON CREATE TABLESPACE "OLTS_CT_STORE" '+DATAVISMIGdatafilegcats1_oid.dbf' SIZE 8M AUTOEXTEND ON CREATE TABLESPACE "OLTS_DEFAULT" '+DATAVISMIGdatafilegdefault1_oid.dbf' SIZE 3M AUTOEXTEND ON CREATE TABLESPACE "OLTS_SVRMGSTORE" '+DATAVISMIGdatafilesvrmg1_oid.dbf' SIZE 3M AUTOEXTEND ON CREATE TABLESPACE "OPMOR" '+DATAVISMIGdatafileopmor01.dbf' SIZE 6M AUTOEXTEND ON CREATE TABLESPACE "ORABPEL" '+DATAVISMIGdatafileorabpel.dbf' SIZE 13M AUTOEXTEND ON CREATE TABLESPACE "OWAPUB" '+DATAVISMIGdatafileowa1.dbf' SIZE 10M AUTOEXTEND ON 37

Author A.Kishore

Author A.Kishore Enable AutoConfig on Applications Database Tier Steps to Perform On All Oracle RAC Nodes 1> Execute $AD_TOP/bin/admkappsutil.pl on the applications tier to generate an appsutil.zip file for the database

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

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

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

CHAPTER. Upgrading to Oracle Database 11g

CHAPTER. Upgrading to Oracle Database 11g CHAPTER 2 Upgrading to Oracle Database 11g 49 50 Oracle Database 11g DBA Handbook I f you have previously installed an earlier version of the Oracle database server, you can upgrade your database to Oracle

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

Re-platforming the E-Business Suite Database

Re-platforming the E-Business Suite Database Re-platforming the E-Business Suite Database Ahmed Alomari Performance Specialist aalomari@cybernoor.com Database SIG Agenda Options Case Study Q & A Options Re-platforming Options Transportable DB Transportable

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

Author A.Kishore Upgrade Oracle Applications from to R12

Author A.Kishore  Upgrade Oracle Applications from to R12 Upgrade Oracle Applications from 11.5.10.2 to R12 System Overview Version 11.5.10.2 Oracle Applications Vision Instance OS: Redhat Linux update 5 Type: Single Node instance Applications OS User: applmgrupd

More information

Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358

Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358 Secrets of Successful Database 11gR2 Upgrades in an E-Business Suite Environment S316358 Michael Brown Colibri Limited mbrown@colibrilimited.com http://www.colibrilimited.com http://blog.michael-brown.org

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

Installation Oracle Applications R on OEL 5.2

Installation Oracle Applications R on OEL 5.2 Installation Oracle Applications R12.1.1 on OEL 5.2 Metalink Note Oracle E-Business Suite Release 12 Installation Guidelines [ID 405565.1] Oracle E-Business Suite Installation and Upgrade Notes Release

More information

Upgrade Oracle Applications from R to R12.1.2

Upgrade Oracle Applications from R to R12.1.2 Upgrade Oracle Applications from R12.1.1 to R12.1.2 Reference Note - Oracle E-Business Suite Readme, Release 12.1.2 (Doc ID 949406.1) 1> Database Preparation Guidelines for an E-Business Suite Release

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

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

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

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

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

Author A.Kishore

Author A.Kishore Upgrade Oracle Applications from R12.1.1 to R12.1.3 For instructions on applying Oracle E-Business Suite 12.1.3 Release Update Pack (12.1.3), features and other information, please refer to My Oracle Support

More information

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff

What s New with Oracle Data Pump in Oracle Database 12c. Dean Gagne Consulting Member of Technical Staff 1 What s New with Oracle Data Pump in Oracle Database 12c Dean Gagne Consulting Member of Technical Staff Program Agenda Full Transportable Export/Import Exporting Views as Tables Detailed Timestamps for

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-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version : DEMO Get Latest &

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

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

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

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

Grid Control Patch Set Step by Step Install On Linux

Grid Control Patch Set Step by Step Install On Linux Grid Control Patch Set 10.2.0.3 Step by Step Install On Linux Alejandro Vargas 11/02/2007 INDEX About This Document...2 1. Check your Grid Control Database Version...2 2. Download the last Patch Set for

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

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

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

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

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

More information

GINESYS v DATABASE INSTALLATION GUIDE. GINESYS v DATABASE INSTALLATION GUIDE. January Aparajita Basu Roy TECHNICAL DOCUMENTER

GINESYS v DATABASE INSTALLATION GUIDE. GINESYS v DATABASE INSTALLATION GUIDE. January Aparajita Basu Roy TECHNICAL DOCUMENTER GINESYS v 11.100.0 DATABASE INSTALLATION GUIDE January 2016 Aparajita Basu Roy TECHNICAL DOCUMENTER 1 Table of Contents Introduction... 3 Minimum system requirement for using GINESYS... 3 Checks to be

More information

Cloning Oracle Applications Environments. Introduction. AutoConfig Components.

Cloning Oracle Applications Environments. Introduction. AutoConfig Components. www.jaggy.com Cloning Oracle Applications Environments Introduction Cloning Oracle Applications 11i instances can be a long and boring task. Either if you are an APPS DBA in a production or development

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

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 11g R2. Installation and Configuration Guide. Abstract

Oracle 11g R2. Installation and Configuration Guide. Abstract Oracle 11g R2 Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g R2 for IMC on the Linux operating system. Part

More information

Oracle 11g R2. Installation and Configuration Guide. Abstract

Oracle 11g R2. Installation and Configuration Guide. Abstract Oracle 11g R2 Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g R2 for IMC on the Linux operating system. Part

More information

Supported Fujitsu BS2000 Servers (page 1) Known Restrictions, Issues, and Workarounds (page 3) Documentation Accessibility (page 8)

Supported Fujitsu BS2000 Servers (page 1) Known Restrictions, Issues, and Workarounds (page 3) Documentation Accessibility (page 8) Oracle Database Release Notes 12c Release 1 (12.1) for Fujitsu BS2000/OSD E74140-02 January 2017 This document describes the features of Oracle Database on Fujitsu BS2000/OSD. This release implements the

More information

Oracle Optimized Solution for Disaster Recovery

Oracle Optimized Solution for Disaster Recovery Oracle Optimized Solution for Disaster Recovery Oracle E-Business Suite 12.1.3 Using Oracle Solaris Cluster Geo Edition Implementation Guide A U G U S T 2 0 1 8 E 9 8 6 1 8-01 Table of Contents 1. Overview...

More information

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

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

More information

2 Upgrading from Oracle Audit Vault x to 10.3.x

2 Upgrading from Oracle Audit Vault x to 10.3.x Oracle Audit Vault Release Notes Release 10.3 E23572-09 November 2012 These Release Notes contain important information that was not included in the Oracle Audit Vault Release 10.3 documentation. This

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

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

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

Convert a Single Instance Database to Oracle RAC 10g on RHEL4 Using Grid Control

Convert a Single Instance Database to Oracle RAC 10g on RHEL4 Using Grid Control Convert a Single Instance Database to Oracle RAC 10g on RHEL4 Using Grid Control Alejandro Vargas Oracle Israel March 15, 2007 Conversion steps in brief...2 Convert Single Instance Database To Cluster

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

Oracle12c Release 1 New Features for Administrators (5 Days)

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

More information

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

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Change Default Temporary Tablespace Use Oracle 11g Create

Change Default Temporary Tablespace Use Oracle 11g Create Change Default Temporary Tablespace Use Oracle 11g Create Use the CREATE USER statement to create and configure a database user, which is as the specified user and to activate that user's roles using the

More information

MDCStore 2.0 DATABASE. Installation Guide

MDCStore 2.0 DATABASE. Installation Guide MDCStore 2.0 DATABASE Installation Guide Molecular Devices MDCStore 2.0 Installation Guide Copyright Copyright 2008, MDS Analytical Technologies. All rights reserved. No part of this publication may be

More information

11i on RAC: Sweating the Details. Practical overview of Technical Details of Implementing RAC for 11i E-Business Suite

11i on RAC: Sweating the Details. Practical overview of Technical Details of Implementing RAC for 11i E-Business Suite 11i on RAC: Sweating the Details Practical overview of Technical Details of Implementing RAC for 11i E-Business Suite Acronyms and Glossary Terms RAC: Real Application Clusters OATM: Oracle Application

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

Oracle 10g on Solaris to Oracle RAC 11gR2 on Linux Upgrade

Oracle 10g on Solaris to Oracle RAC 11gR2 on Linux Upgrade Image courtesy of Mammoth-WEBCO, Inc. Image courtesy of ADEPT Airmotive (Pty) Ltd. Courtesy of KlingStubbins Oracle 10g on Solaris to Oracle RAC 11gR2 on Linux Upgrade Alan Williams Database Administrator

More information

Exam Questions 1Z0-062

Exam Questions 1Z0-062 Exam Questions 1Z0-062 Oracle Database 12c: Installation and Administration https://www.2passeasy.com/dumps/1z0-062/ 1. You are required to migrate your 11.2.0.3 database as a pluggable database (PDB)

More information

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

Maximum Availability Architecture. Oracle Best Practices for High Availability

Maximum Availability Architecture. Oracle Best Practices for High Availability Best Practices for Optimizing Availability During Planned Maintenance Using Oracle Clusterware and Oracle Real Application Clusters Oracle Maximum Availability Architecture White Paper September 2007 Maximum

More information

by guotao zhong August 2006

by guotao zhong August 2006 The installation of Oracle RAC 10g Release 2 on Asianux 2.0(x86-64) by guotao zhong August 2006 1. Introduction One Oracle RAC is a cluster database with a shared cache architecture that provides highly

More information

Change Default Temporary Tablespace Usage Oracle 10g

Change Default Temporary Tablespace Usage Oracle 10g Change Default Temporary Tablespace Usage Oracle 10g alter tablespace temp add tempfile '+data' size 10G, thing: If 'Segment Space management' is set to MANUAL for the default TEMP tablespace, does this

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

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

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

ORACLE NETWORKING: CONFIGURING BASIC NET8/SQL*NET COMPONENTS

ORACLE NETWORKING: CONFIGURING BASIC NET8/SQL*NET COMPONENTS ch03.qxd 10/30/2000 2:49 PM Page 57 C H A P T E R 3 ORACLE NETWORKING: CONFIGURING BASIC NET8/SQL*NET COMPONENTS CHAPTER OBJECTIVES In this chapter, you will learn about: Setting Up Networking Configuration

More information

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

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

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

Oracle 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

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

More information

Guide to installing Oracle 10G Enterprise Edition Server (and creating databases) on Windows, for Controller 8.2

Guide to installing Oracle 10G Enterprise Edition Server (and creating databases) on Windows, for Controller 8.2 Overview Guide to installing Oracle 10G Enterprise Edition Server (and creating databases) on Windows, for Controller 8.2 Controller 8.2 is the first release that supports databases stored on an Oracle

More information

Oracle Database 10g R2. Installation Guide for OEL5(x86) Writer : 이경호

Oracle Database 10g R2. Installation Guide for OEL5(x86) Writer : 이경호 Oracle Database 10g R2 Installation Guide for OEL5(x86) Writer : 이경호 목차 1. 시스템구성... - 2-1.1. 개요... - 2-1.1.1. 정의... - 2-1.1.2. 목적... - 2-1.1.3. 환경... - 2-2. 준비사항... - 2-3. Oracle Install configuration...

More information

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

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

More information

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration.

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration. Volume: 71 Questions Question No : 1 Which two statements are true about migrating your database to Exadata? A. Because Exadata uses InfiniBand, in order to migrate your database to Exadata, you must have

More information

1z0-062.exam.215q 1z0-062 Oracle Database 12c: Installation and Administration

1z0-062.exam.215q 1z0-062 Oracle Database 12c: Installation and Administration 1z0-062.exam.215q Number: 1z0-062 Passing Score: 800 Time Limit: 120 min 1z0-062 Oracle Database 12c: Installation and Administration Exam A QUESTION 1 You notice a high number of waits for the db file

More information

Oracle ILM Assistant Installation Guide Version 1.4

Oracle ILM Assistant Installation Guide Version 1.4 Oracle ILM Assistant Installation Guide Version 1.4 This document provides instructions for installing and running Oracle Information Lifecycle Management (ILM) Assistant. Version: 1.4 Oracle Corporation

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

<Insert Picture Here> Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades

<Insert Picture Here> Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades Exadata MAA Best Practices Series Session 12: Exadata Patching & Upgrades Doug Utzig

More information

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

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

More information

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide An Oracle White Paper November 2009 Oracle RAC One Node 11g Release 2 User Guide Introduction... 1 Software Installation... 3 How to Configure an Oracle RAC One Node Database... 6 Rolling Patch Application

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

Manually Create Sql Profile Oracle 10g

Manually Create Sql Profile Oracle 10g Manually Create Sql Profile Oracle 10g Using the CREATE PROFILE or ALTER PROFILE Statement to Set a If you created your database manually, then you should run the secconf.sql script to apply Finding and

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

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

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

SYSTEM DOCUMENTATION. ALEPH 500 Installation Instructions Version 16

SYSTEM DOCUMENTATION. ALEPH 500 Installation Instructions Version 16 SYSTEM DOCUMENTATION ALEPH 500 Installation Instructions Version 16 Ex Libris Ltd., 2002, 2003 Version 16 Table of Contents 1 INTRODUCTION... 3 2 CONVENTIONS... 3 3 PRE-INSTALLATION PROCEDURE... 4 3.1

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

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.

Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11. Converting to Transparent Data Encryption with Oracle Data Guard using Fast Offline Conversion Oracle Database 12.1 and Oracle Database 11.2 O R A C L E W H I T E P A P E R A U G U S T 2 0 1 7 Table of

More information

Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.)

Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.) Volume: 225 Questions Question No : 1 Which three are the correct definitions of the objects in the Oracle Applications database?(choose three.) A. Hybrid objects contain materialized view objects, and

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

Oracle8i. Release Notes

Oracle8i. Release Notes Oracle8i Release Notes Release 3 (8.1.7) for Intel UNIX (DG/UX Intel and SCO UnixWare) April 2001 A88736-01 These release notes contain important last minute information not included in the documentation

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

Enabling Seamless Data Access for JD Edwards EnterpriseOne

Enabling Seamless Data Access for JD Edwards EnterpriseOne Enabling Seamless Data Access for JD Edwards EnterpriseOne 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Oracle Healthcare Data Repository

Oracle Healthcare Data Repository Oracle Healthcare Data Repository Installation Guide Release 7.0 E52549-01 April 2014 Oracle Healthcare Data Repository Installation Guide, Release 7.0 E52549-01 Copyright 2008, 2014, Oracle and/or its

More information

Oracle Database 12c Administration I

Oracle Database 12c Administration I Course Overview In this course, students will focus on configuration on supported systems. Also how the database fits in with other systems. Who Should Attend View Course Dates & Register Today This is

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

More information

Author A.Kishore APPL_TOP/COMMON_TOP/10.1.2/ (linux1) racerp2 4 gb. RACDB2 (instance 2) HUB Eth0. Eth1

Author A.Kishore   APPL_TOP/COMMON_TOP/10.1.2/ (linux1) racerp2 4 gb. RACDB2 (instance 2) HUB Eth0. Eth1 Public Network Shared Application Tier file system APPL_TOP/COMMON_TOP/10.1.2/10.1.3 (linux1) racerp1 4 gb RACDB1 (instance 1) racerp2 4 gb RACDB2 (instance 2) Web Form CPS (PCP configured) Eth0 Eth1 HUB

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

Oracle Database Creation for Perceptive Process Design & Enterprise

Oracle Database Creation for Perceptive Process Design & Enterprise Oracle Database Creation for Perceptive Process Design & Enterprise 2013 Lexmark International Technology S.A. Date: 4/9/2013 Version: 3.0 Perceptive Software is a trademark of Lexmark International Technology

More information

Oracle RAC Course Content

Oracle RAC Course Content 1 Oracle RAC Course Content Oracle 11g R2 Grid Infrastructure Concepts What is a Cluster Grid Foundation Components Oracle Clusterware Architecture Oracle Clusterware Software and Storage Describe ASM

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

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