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

Scout alert definitions. For internal use only.

ColumnName DataType Key Not Null Default Value Comment
AlertID INTEGER IDENTITY(1,1) PK NN   Unique ID of alert entry
EntityType INTEGER        
IPAddress NVARCHAR(255)        
IPName NVARCHAR(255)        
AlertIndex INTEGER        
AlertText NVARCHAR(max)        
AlertTime INTEGER        
AlertStatus INTEGER        
AlertType INTEGER        
ReservedString1 NVARCHAR(255)        
ReservedString2 NVARCHAR(255)        
ReservedInt1 INTEGER        
ReservedInt2 INTEGER        
IndexName IndexType Columns
PRIMARY PRIMARY AlertID

How to create

CREATE TABLE Alert( AlertID INTEGER NOT NULL, EntityType INTEGER, IPAddress NVARCHAR(255), IPName NVARCHAR(255), AlertIndex INTEGER, AlertText NVARCHAR(max), AlertTime INTEGER, AlertStatus INTEGER, AlertType INTEGER, ReservedString1 NVARCHAR(255), ReservedString2 NVARCHAR(255), ReservedInt1 INTEGER, ReservedInt2 INTEGER, PRIMARY KEY (AlertID));
Table: Alert