User accounts are missing from the Information Centric Analytics (ICA) console and from the LDW_Users table in the RiskFabric database. No errors are logged for the Bay Dynamics AD Connector Job under the SQL Server Agent, or in the Active Directory Connector Utility log.
Release : 6.x
Component : Active Directory Import Utility
The column IsEnabled for the domain controller specified in the ActiveDirectoryDW table Server is set to 0 (False).
To enable a disabled server in the ActiveDirectoryDW.Server table, follow this procedure:
Alternatively, the following statement can be run in SSMS:
USE ActiveDirectoryDW;
GO
UPDATE dbo.[Server]
SET IsEnabled = 1
WHERE ServerID =
;