...
In SQL Server Management Studio (SSMS)
Paste the query below to create the tracs_custom database. You should use the copy button in the code snippet below.
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) |
...
Make sure to give your agencies TraCS SQL user owner rights to the database.
...
Run the Custom distribution file. (This adds state access levels.)
If you set up Task 6.1: Download Tables Upon Login
On your server you should be able to located the distribution and run it C:\ProgramData\TraCS\Download\Tables\*LocationID*\AgencySupportTable.dist.exml
Remove the Distribution Log. xml file
Navigate to C:\ProgramData\TraCS\Settings
Delete DistributionLog.xml
In the configuration manager, select the update tab.
Click the run distribution button.
Navigate to the C:\ProgramData\TraCS\Download\Tables\*LocationID*\ folder
Select AgencySupportTable.dist.exml
...
Run the Distribution file found in your mobile distribution.
Remove the Distribution Log. xml file
Navigate to C:\ProgramData\TraCS\Settings
Delete DistributionLog.xml
In the configuration manager, select the update tab.
Place the distribution file onto C:\ProgramData\TraCS\Distribution
Edit the Distribution Deleting all except the following.
Save
Click the run distribution button.
...
...
We need to run the WIPack now to fully configure all databases and run a DBSync too.
...