conversionsteps.txt

Download ConversionSteps.txt

If you can't read please download the document

Upload: asifsubhan

Post on 17-Sep-2015

229 views

Category:

Documents


5 download

TRANSCRIPT

STEP I: Execute the SQL statements to create the STGADM schema with the appropriate permissions.CREATE USER STGADM IDENTIFIED BY STGADMDEFAULT TABLESPACE CISTS_01TEMPORARY TABLESPACE TEMPPROFILE DEFAULT;CREATE ROLE STG_READ;CREATE ROLE STG_USER;GRANT UNLIMITED TABLESPACE TO STGADM WITH ADMIN OPTION;GRANT SELECT ANY TABLE TO STGADM;GRANT CREATE DATABASE LINK TO STGADM;GRANT CONNECT TO STGADM;GRANT RESOURCE TO STGADM;GRANT DBA TO STGADM WITH ADMIN OPTION;GRANT CREATE ANY SYNONYM TO STGADM;GRANT SELECT ANY DICTIONARY TO STGADM;GRANT GRANT ANY ROLE, GRANT ANY PRIVILEGE,SELECT ANY TABLE,CREATE ANY SYNONYM,DROP ANY SYNONYM,EXECUTE ANY PROCEDURE TO STGADM WITH ADMIN OPTION; CREATE USER STGUSER PROFILE DEFAULT IDENTIFIED BY STGUSERDEFAULT TABLESPACE CISTS_01TEMPORARY TABLESPACE TEMP;GRANT SELECT ANY TABLE TO STGUSER;GRANT CIS_USER TO STGUSER;GRANT CIS_READ TO STGUSER;GRANT CONNECT TO STGUSER;CREATE USER STGREAD IDENTIFIED BY STGREADDEFAULT TABLESPACE CISTS_01TEMPORARY TABLESPACE TEMP;GRANT SELECT ANY TABLE TO STGREAD;GRANT CIS_READ TO STGREAD;GRANT CONNECT TO STGREAD;STEP II: The next step is to install the initial install into the STGADM schema you have just created.2 - Refer to the Initial Install - This is in the Install Guide CCB_DBA_Guide.pdf. 2.1. Install Base FW V2.2.0 from FW22_INI_INSTALL by running CdxDBI.exe from the Install-Upgrade folder under FW22_INI_INSTALL. 2.2. Apply FW V2.2.0 Service Pack 1 from FW22_SP1 by running CdxDBI.exe from the Installupgrade folder under FW22_SP1. 2.3. Apply FW V2.2.0 Service Pack 6 from FW22_SP6 by running CDXPatch.exe from the FW22_SP6\Oracle\cdxdbi folder. 2.4 Apply the CCB\Install-Upgrade\CDXDBI.exeSTEP III: Security Setup In the folder: Security create a bat file and enter in the following and change database-name :oragensec -d stgadm,stgadm,database-name -r stg_read,stg_user -a A -u stguser,stgread -l security.logSTEP IV: Check the security worked:sqlplus stguser/stguser@databasenameselect count(*) from ci_install_prod;STEP V: Configure a second application server to the stguser: Using a second application server will be useful to view the data before it goes into the CISADM (Production schema from the STGADM schema.)4. Database Configuration USERID of the User of the Database: stguser Password of the User of the Database: stguser Oracle Database Name: THESID Oracle Client Character Set NLS_LANG: AMERICAN_AMERICA.UTF8 Host name of database server: thehost Port name for database connection: 1521Check the Application Server comes up and works. Shut it down.STEP VI: Export this database as a backup before you run the ConvSetup.exe utility from the CCB\Conversion folder from your desktop.STEP VII: Edit the bat file : Conversion.bat in the folder CCB\Conversion and enter in your database information.set SID=database-nameset SYSTEM_PASS=managerset PROD_OWNER=CISADMset STG_OWNER=STGADMset STG_USER=STGUSERConvSetup.exe -p O -d %SID%,%SYSTEM_PASS%,%PROD_OWNER%,%STG_OWNER%,%STG_USER% -upauseSTEP VIII: Start the second application server again, it should come up successfully.This completes the Conversion Setup.