...
Code Block | ||
---|---|---|
| ||
USE master GO CREATE DATABASE tracs_custom GO use tracs_custom GO DECLARE @sql1 VARCHAR(1000) SELECT @sql1='ALTER DATABASE '+quotename(db_name())+' SET ALLOW_SNAPSHOT_ISOLATION ON ALTER DATABASE '+quotename(db_name())+' SET SINGLE_USER WITH ROLLBACK IMMEDIATE ALTER DATABASE '+quotename(db_name())+' SET read_committed_snapshot ON ALTER DATABASE '+quotename(db_name())+' SET MULTI_USER' exec(@sql1) |
We need to run the WIPack now to fully configure all databases and run a DBSync too.
From the Master computer
Reset to Zero Pack
Reset the Registry file
Navigate to C:\Program Files (x86)\TraCS
Edit RegistryKeyName.ini
Delete everything after TraCSPack=
Open TraCS on Master Computer.
You should get prompted for update to run like normal.
...