Unicon documentation migration is in progress. You might find some broken links or experience minor issues in the documentation. We are working on resolving these issues.

X

Scout Database Model (CR)

Table: ClientConfig

This table holds all used client config data.

ColumnName DataType Key Not Null Default Value Comment
ClientConfigID UNIQUEIDENTIFIER PK NN    
ClientData VARBINARY(max)        
Created DATETIME   NN   Timestamp of config creation
IndexName IndexType Columns
PK_ClientConfig PRIMARY ClientConfigID

How to create

CREATE TABLE ClientConfig( ClientConfigID UNIQUEIDENTIFIER NOT NULL default NewSequentialID(), ClientData VARBINARY(max), Created DATETIME NOT NULL, CONSTRAINT PK_ClientConfig PRIMARY KEY (ClientConfigID))
Table: ClientConfig