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

In this table database and table locks are managed by Scout Server and Scout Console. Do not make any modifications.

ColumnName DataType Key Not Null Default Value Comment
LockListID INTEGER IDENTITY(1,1) PK NN   Unique ID of lock list entry,Autoincrement value
Type INTEGER        
Id INTEGER        
Mode INTEGER        
ConsoleID INTEGER        
ServerID INTEGER        
ReservedString1 NVARCHAR(255)        
ReservedString2 NVARCHAR(255)        
ReservedInt1 INTEGER        
ReservedInt2 INTEGER        
IndexName IndexType Columns
PRIMARY PRIMARY LockListID

How to create

CREATE TABLE LockList( LockListID INTEGER IDENTITY(1,1) NOT NULL, Type INTEGER, Id INTEGER, Mode INTEGER, ConsoleID INTEGER, ServerID INTEGER, ReservedString1 NVARCHAR(255), ReservedString2 NVARCHAR(255), ReservedInt1 INTEGER, ReservedInt2 INTEGER, PRIMARY KEY (LockListID));
Table: LockList