Tables [dbo].[VanlineAddressType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created10:12:49 PM Thursday, December 28, 2006
Last Modified11:13:44 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_VanlineAddressType: VanlineAddressTypeIDVanlineAddressTypeIDint4
No
1 - 1
Indexes IX_Unique_VanlineAddressType: VanlineAddressTypeVanlineAddressTypevarchar(60)60
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_VanlineAddressType: VanlineAddressTypeIDPK_VanlineAddressTypeVanlineAddressTypeID
Yes
80
IX_Unique_VanlineAddressTypeVanlineAddressType
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[VanlineAddressType]
(
[VanlineAddressTypeID] [int] NOT NULL IDENTITY(1, 1),
[VanlineAddressType] [varchar] (60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[VanlineAddressType] ADD CONSTRAINT [PK_VanlineAddressType] PRIMARY KEY CLUSTERED  ([VanlineAddressTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[VanlineAddressType] ADD CONSTRAINT [IX_Unique_VanlineAddressType] UNIQUE NONCLUSTERED  ([VanlineAddressType]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[VanlineAddressType] TO [MssExec]
GRANT INSERT ON  [dbo].[VanlineAddressType] TO [MssExec]
GRANT DELETE ON  [dbo].[VanlineAddressType] TO [MssExec]
GRANT UPDATE ON  [dbo].[VanlineAddressType] TO [MssExec]
GO
Uses
Used By