0% found this document useful (0 votes)
106 views3 pages

Clone Steps Cold

The document describes the steps to perform a cold clone of a production Oracle E-Business Suite system to create a test instance. It involves using utilities like adpreclone.pl and adcfgclone.pl to clone the database and application tiers, copying the file systems, and configuring the target system by changing hostnames, SIDs, and other parameters. Finally, it discusses some post-clone steps to configure the test instance, including modifying profile options and putting pending requests on hold.

Uploaded by

Kishore Adikar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
106 views3 pages

Clone Steps Cold

The document describes the steps to perform a cold clone of a production Oracle E-Business Suite system to create a test instance. It involves using utilities like adpreclone.pl and adcfgclone.pl to clone the database and application tiers, copying the file systems, and configuring the target system by changing hostnames, SIDs, and other parameters. Finally, it discusses some post-clone steps to configure the test instance, including modifying profile options and putting pending requests on hold.

Uploaded by

Kishore Adikar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

PRD - TEST

RapidClone Utility
------------------

Cold Cloning
-----------

PROD
----

Prepare the source system (System can be up)

1> cd $ORACLE_HOME/appsutil/scripts/VIS_erp
perl adpreclone.pl dbTier - clone (required information about the source -
context file, templates )

Clone folder location - $ORACLE_HOME/appsutil/clone

2> cd $ADMIN_SCRIPTS_HOME
perl adpreclone.pl appsTier - clone (required information of the source -
context file )

Clone folder location - $COMMON_TOP/clone

oraprod
applprod

tar ball - vnc session - scp - cannot be run in background

Copy the source system to the target system

shutdown application, database - copy the entire application and database


from source to target (inst_top - don't copy)

cd $ADMIN_SCRIPTS_HOME
sh adstpall.sh apps/apps

cd $ORACLE_HOME

lsnrctl stop VIS


sqlplus "/as sysdba"
shutdown immediate

-- We can assume that we have copied the filesystem from production to non
production system then we need to follow below steps
-- IF required u can change the permissions of the db + apps

Once the copy is done - bring up the production

oratest
appltest

Configure target system


------------------------
cd $ORACLE_HOME/appsutil/clone/bin
perl adcfgclone.pl dbTier - hostname, SID, port, where are your
datafiles ....recreate the control file - brings up the database
cd $COMMON_TOP/clone/bin
- DEV
perl adcfgclone.pl appsTier- hostname,port, APPL_TOP, common_top, 10.1.2,
10.1.3 - creates a new context file - bring up the application

Web browser -

Finishing Tasks

varies from client to client -

5 minutes

Site%Name - profile - "TEST - Clone of PROD as 04-jun-2014"


Custom_top changes
PRoduction password - FNDCPASS (autoconfig on dbTier and appsTier) -
apps/apps - sysadmin/sysadmin

4 hours - Post clone steps - workflow, payment configuration , customization

-- Keeping all the pending (normal/standby/scheduled) requests are on hold

UPDATE apps.fnd_concurrent_requests SET hold_flag = 'Y' WHERE phase_code = 'P' AND


status_code in ('I','Q','F');
commit;

update applsys.fnd_profile_option_values
set profile_option_value=(select 'TEST Instance. Copy of PROD as of '||
to_char(max(actual_completion_date),'MM/DD/YYYY HH24:MI')
from applsys.fnd_concurrent_requests) where level_id=10001 and
(application_id,profile_option_id) in (select
fpo.application_id,fpo.profile_option_id from applsys.fnd_profile_options
fpo,applsys.fnd_profile_options_tl fpt where
fpo.profile_option_name=fpt.profile_option_name and
fpt.user_profile_option_name='Site Name');
commit;

You might also like