Tables [dbo].[ShipmentStatusKeyDate]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)8
Created1:05:54 PM Monday, January 28, 2013
Last Modified11:13:41 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_ShipmentStatusKeyDate: ShipmentStatusKeyDateIDShipmentStatusKeyDateIDint4
No
1 - 1
Indexes IX_ShipmentStatusKeyDate_Description: DescriptionDescriptionvarchar(64)64
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_ShipmentStatusKeyDate: ShipmentStatusKeyDateIDPK_ShipmentStatusKeyDateShipmentStatusKeyDateID
Yes
IX_ShipmentStatusKeyDate_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
Extended Properties
NameLevel 2 TypeLevel 2 NameValue
DescriptionHolds a vanline shipment status key date.
DescriptionCOLUMNShipmentStatusKeyDateIDPrimary key of the ShipmentStatusKeyDate table.
SQL Script
CREATE TABLE [dbo].[ShipmentStatusKeyDate]
(
[ShipmentStatusKeyDateID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShipmentStatusKeyDate] ADD CONSTRAINT [PK_ShipmentStatusKeyDate] PRIMARY KEY NONCLUSTERED  ([ShipmentStatusKeyDateID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShipmentStatusKeyDate] ADD CONSTRAINT [IX_ShipmentStatusKeyDate_Description] UNIQUE NONCLUSTERED  ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ShipmentStatusKeyDate] TO [MssExec]
GRANT INSERT ON  [dbo].[ShipmentStatusKeyDate] TO [MssExec]
GRANT DELETE ON  [dbo].[ShipmentStatusKeyDate] TO [MssExec]
GRANT UPDATE ON  [dbo].[ShipmentStatusKeyDate] TO [MssExec]
GO
EXEC sp_addextendedproperty N'Description', N'Holds a vanline shipment status key date.', 'SCHEMA', N'dbo', 'TABLE', N'ShipmentStatusKeyDate', NULL, NULL
GO
EXEC sp_addextendedproperty N'Description', N'Primary key of the ShipmentStatusKeyDate table.', 'SCHEMA', N'dbo', 'TABLE', N'ShipmentStatusKeyDate', 'COLUMN', N'ShipmentStatusKeyDateID'
GO
Uses
Used By