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: ScoutLicense

New license management Scout Enterprise Management Suite 15

ColumnName DataType Key Not Null Default Value Comment
ScoutLicenseID INTEGER PK NN   Unique ID
LicenseBlob VARBINARY(max)        
Modified DATETIME        
ControlGuid Uniqueidentifier        
AutoAssignLicenses BIT   NN 1 Auto-assign application licenses, 1: Application licenses are auto-assigned to requesting clients, 0: Application licenses must be assigned by admin to be sent to clients
IndexName IndexType Columns
PRIMARY PRIMARY ScoutLicenseID

How to create

CREATE TABLE License ( ScoutLicenseID INTEGER NOT NULL, LicenseBlob VARBINARY(max), Modified DATETIME, ControlGuid Uniqueidentifier, AutoAssignLicenses BIT NOT NULL DEFAULT 1 CONSTRAINT PK_ScoutLicense, PRIMARY KEY (ScoutLicenseID));

How to initialize

INSERT INTO ScoutLicense (ScoutLicenseID,LicenseBlob,Modified,ControlGuid) VALUES(0,0x8886726839,GETUTCDATE(),NEWID());
Table: ScoutLicense