When Oracle is upgraded from 11 to 12, do any settings in CA TDM repo need to be changed?
book
Article ID: 76844
calendar_today
Updated On:
Products
CA Test Data Manager (Data Finder / Grid Tools)
Issue/Introduction
After copying prod repo to test repo and upgrading test server and test repo from 4.1 to 4.4, will need to upgrade the Oracle CA TDM repo from 11 to 12. The test instance name may also need to be changed. Can you provide the process needed to update the tool to recognize the new db instance name and new version 12?
Environment
Release: Component: TDMDTM
Resolution
You wont need to do anything to the repository in general to support an upgrade from Oracle 11 to Oracle12. The DBA will have to do the migration between these two versions of Oracle, but thats an Oracle process, not a TDM process. From a TDM perspective, you wont need to do anything. The only thing you might need to do is to change your repository profile to point Datamaker to the location of the repository on Oracle 12. These updates were made to schema, but it may not matter (it did no harm):
Tables requiring Schema updates Select * from gtrep_profile ---need to update prof_servername,prof_userid, prof_schema column -- may want to clear out most or replace pljonpdb with dmtdev01db…. COMPLETE: Update gtrep_profile set prof_schema='TDMDM1', PROF_USERID='TDMDM1', PROF_SERVERNAME='<>s:1511/dmtdev01' where prof_schema='TDMPM1' and PROF_USERID='TDMPM1' and PROF_SERVERNAME='<>:1511/PLJONP'
These profiles remain for PLJOND:
These profiles remain for PLJONP: select * from gtrep_system sys_service_layer has the production server ma000xsgtd01 and has sys_rep_ver COMPLETE: Update gtrep_system set SYS_SERVICE_LAYER='http:<>:8090/GTService' select * from gtrep_test_table tt_table_owner has TDMPM1 – COMPLETE: Update gtrep_test_table set TT_TABLE_OWNER = 'TDMDM1' where TT_TABLE_OWNER like 'TDMPM1%' COMPLETE select * from gtrep_external_link; Update gtrep_external_link set EXL_LINK_VAL_2='TDMDM1' where EXL_LINK_VAL_2='TDMPM1';