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