Skip to main content

The "Clone Stage" area

The clone stage area contains all the cloning code required to run RapidClone and is created as follows
Database Tier:   $ORACLE_HOME/appsutil/clone
Applications Tier: $COMMON_TOP/clone
This contains the following directories and scripts :
  • bin directory containing the configuration scripts for use on the target system:
    • adclone.pl - the main cloning script
    • adcfgclone.pl - used to configure the Target system, this calls adclone.pl
    • adclonectx.pl - used to clone a Source XML file manually
    • adchkutl.sh - checks for existence of require O/S utils, cc, make, ar and ld
    • adaddnode.pl (Applications Tier only) - used when adding an additional node to an existing system. This script is used to add a new row(representing the new node) to AD_APPL_TOPS to ensure the Patch History data is applicable to all existing and new nodes
  • context directory containing the context file templates :
    • CTXORIG.xml - a copy of the source context file, and is used during the creation the Target Context file
    • $CONTEXT_NAME.xml - a copy of the source context file
    • adxdbctx.tmp (Database Tier only) - a copy of $ORACLE_HOME/appsutil/template/adxdbctx.tmp, and is used during the creation the Target Context file
    • adxmlctx.tmp (Applications Tier only) a copy of $AD_TOP/admin/template/adxmlctx.tmp, and is used during the creation the Target Context file

  • appl (Applications Tier only) directory used only when merging, i.e cloning from multi-node to single node

  • appsts (Applications Tier only) directory used by the Applications Management Pack Cloning to store atTechStack (Tools and Web ORACLE_HOMEs) in zip files and their associated driver files
  • data (Database Tier only) directory containing the driver file and templates for the recreation of the control files :
    (Also used by the Applications Management Pack Cloning to store compressed datafile zip files)
    • addbhomsrc.xml - information relating to the datafile mount points on source
    • data.drv - driver file used to instantiate the templates within adcrdb.zip
      (Also used by the Applications Management Pack Cloning to uncompress the datafiles)

    • adcrdb.zip - contains the following files related to the recreation of the Control files:-
      • adcrdb.sh - template of the control file shell script
      • adcrdbclone.sql - template of SQL script used to recreate the control files
      • dbfinfo.lst - list of the datafiles on the source database
  • dbts (Database Tier only) directory used by Rapid Install and Applications Management Pack Cloning to store dbTechStack (RDBMS ORACLE_HOME) in zip files and their associated driver files
  • html directory - empty, not used
  • jlib directory containing the the Rapid Clone java and jdbc libraries
  • java directory containing RapidClone AD java code
    Database Tier: copied from $ORACLE_HOME/appsutil/java
    Applications Tier: copied from $$JAVA_TOP


  • oui directory containing the oui libraries for creating/maintaining the central/local inventory
    Database Tier: copied from $ORACLE_HOME/oui
    Applications Tier: copied from $IAS_ORACLE_HOME/oui

  • jre directory containing the java runtime files

In addition to the clone stage area, the following files are also generated :

Database Tier :
$ORACLE_HOME/appsutil/driver :
  • preclone.drv - creates the registration driver regclone.drv
  • regclone.drv - used during the configuration phase to create and run the registration scripts
Applications Tier :

(Tools 10.1.2 $ORACLE_HOME)
$ORACLE_HOME/appsutil/clone :
  • ouicli.pl - perl script that runs OUI CLI for ORACLE_HOME native cloning
  • txkstubcfg1013.pl - script creates the file "EBIZ_R12_README.txt" in a selected list of directories
  • adlnktools.sh - script to relink RDBMS binaries
$ORACLE_HOME/appsutil/clone/driver :
  • preclone.drv - creates the registration driver regclone.drv
  • regclone.drv - used during the configuration phase to create the registration scripts
$ORACLE_HOME/appsutil/clone/template :
  • ftrace_cfg_1012.tmp
  • adouitools.pl - template for script that runs OUI CLI for ORACLE_HOME native cloning
  • adlnk806.sh - template for script to relink tools home


(Web 10.1.3 $ORACLE_HOME)
$IAS_ORACLE_HOME/appsutil/clone :
  • ouicli.pl - perl script that runs OUI CLI for ORACLE_HOME native cloning
  • txkstubcfg1013.pl - script to create the file "EBIZ_R12_README.txt" in a selected list of directories
  • adlnkweb.sh - script to relink Web home binaries
$IAS_ORACLE_HOME/appsutil/driver :
  • preclone.drv - creates the registration driver regclone.drv
  • regclone.drv - used during the configuration phase to create the registration scripts
$IAS_ORACLE_HOME/appsutil/template :
  • adouiweboh.pl - template for script that runs OUI CLI for ORACLE_HOME native cloning
  • txkstubcfg1013.pl - script creates the file "EBIZ_R12_README.txt" in a selected list of directories
  • apachectl_sh_1013_oh.tmp
  • adlnkweboh.sh - template for Script to relink Web home binaries

Comments

Popular posts from this blog

CLSRSC-430: Failed to start rolling patch mode

############################################################ GRID PSU Failed on Node2: =========================== [root@server1 tmp]# /oracrs/oracle/product/12102/OPatch/opatchauto apply /path1/patches/23273629 -oh /oracrs/oracle/product/12102 -ocmrf /tmp/ocm.rsp OPatch Automation Tool Copyright (c)2014, Oracle Corporation. All rights reserved. OPatchauto Version : 12.1.0.1.10 OUI Version        : 12.1.0.2.0 Running from       : /oracrs/oracle/product/12102 opatchauto log file: /oracrs/oracle/product/12102/cfgtoollogs/opatchauto/23273629/opatch_gi_2016-11-25_06-13-44_deploy.log Parameter Validation: Successful Configuration Validation: Successful Patch Location: /path1/patches/23273629 Grid Infrastructure Patch(es): 21436941 23054246 23054327 23054341 DB Patch(es): 23054246 23054327 The following patch(es) are duplicate patches with patches installed in the Oracle Home.  [ 20299023] You hav...

SQL Plan Management [ SPM ]

============================================= SQL> SHOW parameter baselines NAME                                 TYPE        VALUE ------------------------------------ ----------- ------- optimizer_capture_sql_plan_baselines boolean     FALSE optimizer_use_sql_plan_baselines     boolean     TRUE SQL> ============================================= Connect as SPM user and create a table as follows. -------------------------------------------------- SQL> CREATE TABLE EMPLOYEE (code number,dept char(100),address char(1000)); Table created. SQL> ============================================= Populate some rows in the table =================================== declare c1 number; begin for c1 IN 1..10000 ...