====== pears.IQXHubMonitor ======
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
===== Description =====
details of hub activity version run time etc.
===== Columns =====
^ Column ^ Type ^ Null ^ Default ^ Comment ^
| **MachineName** | char(50) | NOT NULL | | |
| **Exe** | char(100) | NOT NULL | | |
| **Instance** | char(50) | NOT NULL | | |
| MachineIP | char(50) | NULL | | |
| ExeVersion | char(20) | NULL | | |
| JobRunnerVersion | char(20) | NULL | | |
| WebServicesVersion | char(20) | NULL | | |
| Profile | char(50) | NULL | | |
| JobRunnerSchedule | char(20) | NULL | | |
| Started | timestamp | NULL | | |
| LastCheckin | timestamp | NULL | | |
| LastWebRequest | timestamp | NULL | | |
| BackupFolder | char(100) | NULL | | |
| StaticDataURL | char(100) | NULL | | |
| InfoComment | char(100) | NULL | | |
| Critical | tinyint | NULL | 0 | |
===== Primary Key =====
* MachineName, Exe, Instance
===== Foreign Keys =====
* No outgoing foreign keys found.
===== Referenced By =====
* No incoming foreign keys found.
===== Indexes =====
* No indexes found.
===== Triggers =====
* No triggers found.
===== Original SQL =====
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."IQXHubMonitor"
-- Table comment: details of hub activity version run time etc.
-- Statement count: 2
CREATE TABLE "pears"."IQXHubMonitor" (
"MachineName" char(50) NOT NULL
,"Exe" char(100) NOT NULL
,"Instance" char(50) NOT NULL
,"MachineIP" char(50) NULL
,"ExeVersion" char(20) NULL
,"JobRunnerVersion" char(20) NULL
,"WebServicesVersion" char(20) NULL
,"Profile" char(50) NULL
,"JobRunnerSchedule" char(20) NULL
,"Started" timestamp NULL
,"LastCheckin" timestamp NULL
,"LastWebRequest" timestamp NULL
,"BackupFolder" char(100) NULL
,"StaticDataURL" char(100) NULL
,"InfoComment" char(100) NULL
,"Critical" tinyint NULL DEFAULT 0
,PRIMARY KEY ("MachineName" ASC,"Exe" ASC,"Instance" ASC)
)
go
COMMENT ON TABLE "pears"."IQXHubMonitor" IS
'details of hub activity version run time etc.'
go