
[dbo].[neugentexceptions]
CREATE TABLE [dbo].[neugentexceptions]
(
[alertnum] [int] NOT NULL,
[server_addr] [int] NOT NULL,
[probe_addr] [int] NOT NULL,
[intervaldatetime] [datetime] NOT NULL,
[resource] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[value] [float] NOT NULL,
[lowermode] [float] NOT NULL,
[uppermode] [float] NOT NULL,
[lowerhist] [float] NOT NULL,
[upperhist] [float] NOT NULL,
[violatedbound] [int] NOT NULL,
[violationtype] [int] NOT NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [baseidx_neugentexceptions] ON [dbo].[neugentexceptions] ([alertnum]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [neugentexceptions_alertindex] ON [dbo].[neugentexceptions] ([alertnum]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[neugentexceptions] TO [uniadmin]
GRANT INSERT ON [dbo].[neugentexceptions] TO [uniadmin]
GRANT DELETE ON [dbo].[neugentexceptions] TO [uniadmin]
GRANT UPDATE ON [dbo].[neugentexceptions] TO [uniadmin]
GRANT SELECT ON [dbo].[neugentexceptions] TO [uniuser]
GO