Tables [dbo].[SOShipmentExtTransactions]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created1:00:53 AM Thursday, March 21, 2019
Last Modified1:09:57 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_SOShipmentExtTransactions: SOShipmentExtTransactionIDSOShipmentExtTransactionIDint4
False
1 - 1
ShipmentIDint4
False
TrackingNumbervarchar(64)64
False
DeliveryDatedatetime8
True
Weightdecimal(18,6)9
False
ShipMethodIDint4
True
Freightmoney8
False
FreightCostmoney8
False
EstDeliveryDatedatetime8
True
ShipmentNotesvarchar(255)255
False
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_SOShipmentExtTransactions: SOShipmentExtTransactionIDPK_SOShipmentExtTransactionsSOShipmentExtTransactionID
True
80
CREATE TABLE [dbo].[SOShipmentExtTransactions]
(
[SOShipmentExtTransactionID] [int] NOT NULL IDENTITY(1, 1),
[ShipmentID] [int] NOT NULL,
[TrackingNumber] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[DeliveryDate] [datetime] NULL,
[Weight] [decimal] (18, 6) NOT NULL,
[ShipMethodID] [int] NULL,
[Freight] [money] NOT NULL,
[FreightCost] [money] NOT NULL,
[EstDeliveryDate] [datetime] NULL,
[ShipmentNotes] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_SOShipmentExtTransactions_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_SOShipmentExtTransactions_LastUpdate] DEFAULT (getdate())
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SOShipmentExtTransactions] ADD CONSTRAINT [PK_SOShipmentExtTransactions] PRIMARY KEY CLUSTERED  ([SOShipmentExtTransactionID]) ON [PRIMARY]
GO