Tables [dbo].[AlertConfigParams]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
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
Foreign Keys fk_alertconfigparams_alertconfigID: [dbo].[UserAlertConfig].alertconfigIDalertconfigIDint4
No
paramNamenvarchar(255)510
No
paramValueint4
No
Foreign Keys Foreign Keys
NameColumns
fk_alertconfigparams_alertconfigIDalertconfigID->[dbo].[UserAlertConfig].[alertconfigID]
SQL Script
CREATE TABLE [dbo].[AlertConfigParams]
(
[alertconfigID] [int] NOT NULL,
[paramName] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[paramValue] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AlertConfigParams] ADD CONSTRAINT [fk_alertconfigparams_alertconfigID] FOREIGN KEY ([alertconfigID]) REFERENCES [dbo].[UserAlertConfig] ([alertconfigID])
GO
Uses