Author: Apps DBA
Oracle Applications R12.2.5 New Features: dualfs in cloning
-bash$ perl adcfgclone.pl appsTier dualfs
Copyright (c) 2002, 2015 Oracle Corporation
Redwood Shores, California, USA
Oracle E-Business Suite Rapid Clone
Version 12.2
adcfgclone Version 120.63.12020000.56
Enter the APPS password :
Enter the Weblogic AdminServer password :
Do you want to add a node (yes/no) [no] :
Running: Context clone…
Log file located at /u01/VISN/fs1/EBSapps/comn/clone/bin/CloneContext_1023194859.log
Provide the values required for creation of the new APPL_TOP Context file.
Target System Hostname (virtual or normal) [appsmt] :
Target System Database SID : VISN
Target System Database Server Node [r12erpt] : appsdb
Target System Database Domain Name [domain.com] :
Target System Base Directory : /u01/VISN
Target System Base Directory set to /u01/VISN
Target System Current File System Base set to /u01/VISN/fs1
Target System Other File System Base set to /u01/VISN/fs2
Target System Fusion Middleware Home set to /u01/VISN/fs1/FMW_Home
Target System Other File System Fusion Middleware Home set to /u01/VISN/fs2/FMW_Home
Target System Web Oracle Home set to /u01/VISN/fs1/FMW_Home/webtier
Target System Other File System Web Oracle Home set to /u01/VISN/fs2/FMW_Home/webtier
Target System Appl TOP set to /u01/VISN/fs1/EBSapps/appl
Target System Other File System Appl TOP set to /u01/VISN/fs2/EBSapps/appl
Target System COMMON TOP set to /u01/VISN/fs1/EBSapps/comn
Target System Other File System COMMON TOP set to /u01/VISN/fs2/EBSapps/comn
Target System Instance Home Directory [V] : /u01/VISN
Target System Current File System Instance Top set to /u01/VISN/fs1/inst/apps/VISN_appsmt
Do you want to preserve the Display [appsmt:0.0] (y/n) : n
Target System Display [r12erpt:0.0] : appsmt:3.0
Target System Root Service [enabled] :
Target System Web Entry Point Services [enabled] :
Target System Web Application Services [enabled] :
Target System Batch Processing Services [enabled] :
Target System Other Services [disabled] :
Do you want the target system to have the same port values as the source system (y/n) [y] ? : n
Target System Port Pool [0-99] : 88
Checking the port pool 88
done: Port Pool 88 is free
Report file located at /u01/VISN/fs1/inst/apps/VISN_appsmt/admin/out/portpool.lst
UTL_FILE_DIR on database tier consists of the following directories.
1. /usr/tmp
2. /usr/tmp
3./u01/VISN/product/12.1.0/appsutil/outbound/VISN_appsmt
4. /usr/tmp
Choose a value which will be set as APPLPTMP value on the target node [1] : 3
The new APPL_TOP context file has been created :
/u01/VISN/fs1/inst/apps/VISN_appsmt/appl/admin/VISN_appsmt.xml
Check Clone Context logfile /u01/VISN/fs1/EBSapps/comn/clone/bin/CloneContext_1023194859.log for details.
Creating Patch file system context file…..
Log file located at /u01/VISN/fs1/EBSapps/comn/clone/bin/CloneContextPatch_1023194973.log
Target System Other File System Instance Top set to /u01/VISN/fs2/inst/apps/VISN_appsmt
Target System Port Pool [0-99] : 89
Checking the port pool 89
done: Port Pool 89 is free
Report file located at /u01/VISN/fs2/inst/apps/VISN_appsmt/admin/out/portpool.lst
The new APPL_TOP context file has been created :
/u01/VISN/fs2/inst/apps/VISN_appsmt/appl/admin/VISN_appsmt.xml
Check Clone Context logfile /u01/VISN/fs1/EBSapps/comn/clone/bin/CloneContextPatch_********.log for details.
FMW Pre-requisite check log file location : /u01/VISN/fs1/EBSapps/comn/clone/FMW/logs/prereqcheck.log
Running: FMW pre-req check…
Configuring: Run file system….
LogFile located at /u01/VISN/fs1/inst/apps/VISN_appsmt/admin/log/clone/run/RCloneApplyAppstier_*******.log
What are the differences between Oracle Applications R12.1.x and R12.2.x
1. Dual FS: Oracle Application Release 12.2 has dual filesystems(RUN FS and PATCH FS) to facilitate Online Patching.This Requires double the mountpoint space at MiddleTier Level.
How to Configure RMAN Backups into Multiple Locations?
Oracle RMAN (Recovery Manager) Concepts
Oracle DBA Concepts: Background Processes in Oracle ASM (Automatic storage Management)
ARBn performs the actual rebalance data extent movements in an Automatic Storage Management instance. There can be many of these processes running at a time, named ARB0, ARB1, and so on.
ASMB runs in a database instance that is using an ASM disk group. ASMB communicates with the ASM instance, managing storage and providing statistics. ASMB can also run in the ASM instance. ASMB runs in ASM instances when the ASMCMD cp command runs or when the database instance first starts if the SPFILE is stored in ASM.
GMON maintains disk membership in ASM disk groups.
MARK marks ASM allocation units as stale following a missed write to an offline disk. This essentially tracks which extents require resync for offline disks.
RBAL runs in both database and ASM instances. In the database instance, it does a global open of ASM disks. In an ASM instance, it also coordinates rebalance activity for disk groups.
How to change Rebalance Power in ASM Instances?
Oracle Database ASM Features: REBALANCING
The performance of rebalance operation is controlled by initialization parameter ASM_POWER_LIMIT.
ASM_POWER_LIMIT Parameter
Default value 1
Range of Values 0 to 11 (Prior to 11gR2)
Range of Values 0 to 1024(From 11gR2)
For 10g Databases:
SQL> alter diskgroup DG1 rebalance power 12;
alter diskgroup DG1 rebalance power 12
*
ERROR at line 1:
ORA-15102: invalid POWER expression
SQL> alter diskgroup DG1 rebalance power 11;
Diskgroup altered.
For 11g AND 12c Databases
SQL> alter diskgroup DG1 rebalance power 1025;
alter diskgroup DG1 rebalance power 1025
*
ERROR at line 1:
ORA-15102: invalid POWER expression
SQL> alter diskgroup DG1 rebalance power 1024;
Diskgroup altered.
The higher the value of rebalancing power, faster would be rebalancing operation.