Agent Guidance Core User Guide

Please email support@creovai.com for omissions or errors.
×
Menu

Migrating and Changing Agent Guidance System Configurations

 
There is a standard reconfiguration process that allows the migration or alteration of a Agent Guidance System while maintaining all Users, Workflows, and core Agent Guidance configuration details. This process is functionally equivalent to an additional website being added to the existing Agent Guidance System.
 
This reconfiguration process enables the following actions:
 
If you wish to alter any part of the Agent Guidance System configuration that isn't offered within the Agent Guidance website's GUI, then please consult your Agent Guidance vendor.
 

Process

Preparation steps to be carried out prior to reconfiguration
 
--If swapping to Windows Authentication, this should be the Windows User that will be running the installer
--If swapping to Forms Authentication, this would typically be 'Admin'
DECLARE @username NVARCHAR(50) = 'Username'
-- The displayed first and last name for the user
DECLARE @forename NVARCHAR(50) = 'Forename'
DECLARE @surname NVARCHAR(50) = 'Surname'
--If swapping to Forms Authentication, this should be set to 1
DECLARE @forms BIT = 0
 
INSERT INTO tbl_Users (username, firstname, surname, enabled, password, createdAt, passwordChangeRequired)
VALUES (@username, @forename, @surname, 1, '', GETDATE(), @forms)
DECLARE @userID INT = @@IDENTITY
 
INSERT INTO tbl_ug_join (user_id, group_id)
VALUES (@userID, 1)
 
INSERT INTO tbl_user_licences (userID, partNumber)
VALUES (@userID, 'SYSTEM-MANAGER')