Tables [dbo].[BranchAddressType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)6
Created4:57:07 PM Thursday, September 7, 2006
Last Modified11:13:38 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_BranchAddressType: BranchAddressTypeIDBranchAddressTypeIDint4
No
1 - 1
Indexes IX_Unique_BranchAddressType: BranchAddressTypeBranchAddressTypevarchar(60)60
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_BranchAddressType: BranchAddressTypeIDPK_BranchAddressTypeBranchAddressTypeID
Yes
80
IX_Unique_BranchAddressTypeBranchAddressType
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[BranchAddressType]
(
[BranchAddressTypeID] [int] NOT NULL IDENTITY(1, 1),
[BranchAddressType] [varchar] (60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[BranchAddressType] ADD CONSTRAINT [PK_BranchAddressType] PRIMARY KEY CLUSTERED  ([BranchAddressTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[BranchAddressType] ADD CONSTRAINT [IX_Unique_BranchAddressType] UNIQUE NONCLUSTERED  ([BranchAddressType]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[BranchAddressType] TO [MssExec]
GRANT INSERT ON  [dbo].[BranchAddressType] TO [MssExec]
GRANT DELETE ON  [dbo].[BranchAddressType] TO [MssExec]
GRANT UPDATE ON  [dbo].[BranchAddressType] TO [MssExec]
GO
Uses
Used By