Tables [dbo].[SecurityToolFunctions]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count12
Created12:44:45 PM Thursday, October 04, 2007
Last Modified12:44:45 PM Thursday, October 04, 2007
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key pk_sectoolfunctions: functionIDfunctionIDint4
No
1 - 1
Foreign Keys fk_sectoolfunctions_tool: [dbo].[Tools].toolIDtoolIDint4
No
functionNamenvarchar(50)100
Yes
canPromptint4
Yes
((0))
Indexes Indexes
NameColumnsUnique
Cluster Primary Key pk_sectoolfunctions: functionIDpk_sectoolfunctionsfunctionID
Yes
Foreign Keys Foreign Keys
NameColumns
fk_sectoolfunctions_tooltoolID->[dbo].[Tools].[toolID]
SQL Script
CREATE TABLE [dbo].[SecurityToolFunctions]
(
[functionID] [int] NOT NULL IDENTITY(1, 1),
[toolID] [int] NOT NULL,
[functionName] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[canPrompt] [int] NULL CONSTRAINT [DF__SecurityT__canPr__40058253] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SecurityToolFunctions] ADD CONSTRAINT [pk_sectoolfunctions] PRIMARY KEY CLUSTERED ([functionID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SecurityToolFunctions] ADD CONSTRAINT [fk_sectoolfunctions_tool] FOREIGN KEY ([toolID]) REFERENCES [dbo].[Tools] ([toolID])
GO
Uses
Used By