-- Table: dbo.SPTMonitorHistory -- Bill Wunder use admin GO CREATE TABLE [dbo].[SPTMonitorHistory] ( [id] [int] IDENTITY (1, 1) NOT NULL , [lastrun] [datetime] NOT NULL , [cpu_busy] [bigint] NOT NULL , [io_busy] [bigint] NOT NULL , [idle] [bigint] NOT NULL , [pack_received] [bigint] NOT NULL , [pack_sent] [bigint] NOT NULL , [connections] [bigint] NOT NULL , [pack_errors] [bigint] NOT NULL , [total_read] [bigint] NOT NULL , [total_write] [bigint] NOT NULL , [total_errors] [bigint] NOT NULL , CONSTRAINT [pkc_SPTMonitorHistory__id] PRIMARY KEY CLUSTERED ( [id] ) ON [PRIMARY] ) ON [PRIMARY] GO