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 |
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());