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

This table is used to display the progress of a configuration run in the Scout Console.

ColumnName DataType Key Not Null Default Value Comment
UpdateJobID INTEGER PK NN    
DeviceCount INTEGER        
DevicesDone INTEGER        
IndexName IndexType Columns
PK_ConfigRun PRIMARY UpdateJobID

How to create

CREATE TABLE ConfigRun(UpdateJobID INTEGER NOT NULL, DeviceCount INTEGER, DevicesDone INTEGER, CONSTRAINT PK_ConfigRun, PRIMARY KEY (UpdateJobID))

Table: ConfigRun