Tables [dbo].[NotificationValues]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count0
Created12:44:46 PM Thursday, October 04, 2007
Last Modified12:44:46 PM Thursday, October 04, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK__NotificationValu__64CCF2AE: sequenceID\eventID\paramID\monitorIDForeign Keys FK__Notificat__event__65C116E7: [dbo].[TriggeringEvent].eventIDeventIDint4
No
Cluster Primary Key PK__NotificationValu__64CCF2AE: sequenceID\eventID\paramID\monitorIDsequenceIDint4
No
Cluster Primary Key PK__NotificationValu__64CCF2AE: sequenceID\eventID\paramID\monitorIDForeign Keys FK__NotificationValu__66B53B20: [dbo].[MonitorParams].monitorID\paramIDmonitorIDint4
No
Cluster Primary Key PK__NotificationValu__64CCF2AE: sequenceID\eventID\paramID\monitorIDForeign Keys FK__NotificationValu__66B53B20: [dbo].[MonitorParams].monitorID\paramIDparamIDint4
No
validParamValuenvarchar(1024)2048
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__NotificationValu__64CCF2AE: sequenceID\eventID\paramID\monitorIDPK__NotificationValu__64CCF2AEsequenceID, eventID, paramID, monitorID
Yes
Foreign Keys Foreign Keys
NameColumns
FK__Notificat__event__65C116E7eventID->[dbo].[TriggeringEvent].[eventID]
FK__NotificationValu__66B53B20monitorID->[dbo].[MonitorParams].[monitorID]
paramID->[dbo].[MonitorParams].[paramID]
SQL Script
CREATE TABLE [dbo].[NotificationValues]
(
[eventID] [int] NOT NULL,
[sequenceID] [int] NOT NULL,
[monitorID] [int] NOT NULL,
[paramID] [int] NOT NULL,
[validParamValue] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[NotificationValues] ADD CONSTRAINT [PK__NotificationValu__64CCF2AE] PRIMARY KEY CLUSTERED ([sequenceID], [eventID], [paramID], [monitorID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[NotificationValues] ADD CONSTRAINT [FK__Notificat__event__65C116E7] FOREIGN KEY ([eventID]) REFERENCES [dbo].[TriggeringEvent] ([eventID])
GO
ALTER TABLE [dbo].[NotificationValues] ADD CONSTRAINT [FK__NotificationValu__66B53B20] FOREIGN KEY ([monitorID], [paramID]) REFERENCES [dbo].[MonitorParams] ([monitorID], [paramID])
GO
Uses