Tables [dbo].[IGCSetup]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created4:57:08 PM Thursday, September 7, 2006
Last Modified11:13:39 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_IGCSetup: IGCSetupPriKeyIGCSetupPriKeyint4
No
1 - 1
Interstatevarchar(50)50
Yes
Localvarchar(50)50
Yes
Surveyvarchar(50)50
Yes
Foreign Keys FK_IGCSetup_Branch: [dbo].[Branch].BranchPriKeyBranchPriKeyint4
Yes
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_IGCSetup: IGCSetupPriKeyPK_IGCSetupIGCSetupPriKey
Yes
80
Foreign Keys Foreign Keys
NameColumns
FK_IGCSetup_BranchBranchPriKey->[dbo].[Branch].[BranchPriKey]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[IGCSetup]
(
[IGCSetupPriKey] [int] NOT NULL IDENTITY(1, 1),
[Interstate] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Local] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Survey] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[BranchPriKey] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[IGCSetup] ADD CONSTRAINT [PK_IGCSetup] PRIMARY KEY CLUSTERED  ([IGCSetupPriKey]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[IGCSetup] ADD CONSTRAINT [FK_IGCSetup_Branch] FOREIGN KEY ([BranchPriKey]) REFERENCES [dbo].[Branch] ([BranchPriKey])
GO
GRANT SELECT ON  [dbo].[IGCSetup] TO [MssExec]
GRANT INSERT ON  [dbo].[IGCSetup] TO [MssExec]
GRANT DELETE ON  [dbo].[IGCSetup] TO [MssExec]
GRANT UPDATE ON  [dbo].[IGCSetup] TO [MssExec]
GO
Uses