Table of Contents

Changing A Database Connection Record

Before you begin:

This process requires access to the SQL Server Management Studio application and a knowledge of T-SQL commands. Contact Third Wave support at https://portal.twbs.com if you are not comfortable with the following instructions.

Identify the Connection(s) to be Changed

Database connection information is found in the TWBS_WS_OCMP table in the Versago Common database. Use the following query to list the existing connections.

SELECT * FROM TWBS_WS_OCMP

The key fields needed to make this change are:

Change the Connection Information

Caution The following commands will modify data in your database.

Update the Target Server

UPDATE TWBS_WS_OCMP
SET ServerName = <NewName>
WHERE ID = <AppropriateID>

Update the Target Database

UPDATE TWBS_WS_OCMP
SET DBName= <NewName>
WHERE ID = <AppropriateID>

Update Both the Target Server and Database

UPDATE TWBS_WS_OCMP
SET ServerName = <NewName>, DBName= <NewName>
WHERE ID = <AppropriateID>

Check the Change