The interface runs several stored procedures. Most users have the databae for Citect set up for them. If the collector gets the following error:
Run-time error '-2147217900 (80040e14)':
Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option.
Or some error similar that mentions "clr enabled" then the "clr" needs to be enabled. Run Microsoft SQL Manager and execute the following query:
sp_configure 'clr enabled', 1
GO
RECONFIGURE
GO