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

ColumnName DataType Key Not Null Default Value Comment
MonitorID INTEGER PK NN   Unique ID of monitor entry
MonitorType INTEGER        
MonitorUser NVARCHAR(255)        
ObjectName NVARCHAR(max)        
MonitorTime INTEGER        
Reason INTEGER        
ReservedString1 NVARCHAR(255)        
ReservedString2 NVARCHAR(255)        
ReservedInt1 INTEGER        
ReservedInt2 INTEGER        
IndexName IndexType Columns
PRIMARY PRIMARY MonitorID

How to create

CREATE TABLE Monitor( MonitorID INTEGER NOT NULL, MonitorType INTEGER, MonitorUser NVARCHAR(255), ObjectName NVARCHAR(max), MonitorTime INTEGER, Reason INTEGER, ReservedString1 NVARCHAR(255), ReservedString2 NVARCHAR(255), ReservedInt1 INTEGER, ReservedInt2 INTEGER, PRIMARY KEY (MonitorID));
Table: Monitor