home *** CD-ROM | disk | FTP | other *** search
- CREATE TABLE [ProcessCheckMonitor] (
- [ID] [int] IDENTITY (1, 1) NOT NULL ,
- [ComputerID] [int] NULL CONSTRAINT [DF__Temporary__Compu__108B795B] DEFAULT (0),
- [AlertGroupID] [int] NULL CONSTRAINT [DF__Temporary__Alert__117F9D94] DEFAULT (0),
- [Enable] [bit] NULL CONSTRAINT [DF__Temporary__Enabl__1273C1CD] DEFAULT (0),
- [ProcessName] [nvarchar] (255) NULL ,
- [ProcessPath] [nvarchar] (255) NULL ,
- [CPUMax] [int] NULL CONSTRAINT [DF__Temporary__CPUMa__1367E606] DEFAULT (0),
- [MemoryMax] [int] NULL CONSTRAINT [DF__Temporary__Memor__145C0A3F] DEFAULT (0),
- [PagedPoolMax] [int] NULL CONSTRAINT [DF__Temporary__Paged__15502E78] DEFAULT (0),
- [NonPagedPoolMax] [int] NULL CONSTRAINT [DF__Temporary__NonPa__164452B1] DEFAULT (0),
- [PageFileMax] [int] NULL CONSTRAINT [DF__Temporary__PageF__173876EA] DEFAULT (0),
- [NotifyOnly] [bit] NULL CONSTRAINT [DF__Temporary__Notif__182C9B23] DEFAULT (0),
- [NotCheck] [bit] NULL CONSTRAINT [DF__Temporary__NotCh__1920BF5C] DEFAULT (0),
- [AndCheck] [bit] NULL CONSTRAINT [DF__Temporary__AndCh__1A14E395] DEFAULT (0),
- [Restart] [bit] NULL CONSTRAINT [DF__Temporary__Resta__1B0907CE] DEFAULT (0),
- [Halt] [bit] NULL CONSTRAINT [DF__TemporaryU__Halt__1BFD2C07] DEFAULT (0),
- [MiscParms] [ntext] NULL ,
- CONSTRAINT [aaaaaProcessCheckMonitor_PK] PRIMARY KEY NONCLUSTERED
- (
- [ID]
- ) ON [PRIMARY]
- ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
- GO
-
-