ITCM MDB database needs to be renamed in Microsoft SQL Server.
How to rename the MDB database in Client Automation ? Is it a supported operation ?
Client Automation - All Versions
Microsoft SQL Server
Standalone Domain Manager (no linked to an enterprise)
While renaming the MDB is technically possible through specific configuration changes, it is officially unsupported and has not been certified by Engineering.
Renaming the MDB database is a three-part process involving updates to the local Comstore, the database and in CIC configuration file.
On the Domain Manager, use the ccnfcmda utility to point the application to the new database name. Run the following command in an administrative command prompt:
ccnfcmda -cmd SetParameterValue -ps itrm/database/default -pn dbname -v "<new_mdb_name>"
(Note: Replace <new_mdb_name> with the new database name.)
The sql table ca_n_tier must be updated to match the new database name. Execute the following SQL query against the renamed MDB:
C:\Program Files (x86)\CA\SC\CIC\conf\config.xml in a text editor.<dbname> tag and update the value to the new database name: <dbname>new_mdb_name</dbname>To apply the new configuration, restart the CAF services:
caf stop
caf start