Tables [dbo].[ICWarehouseCostingTypes]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:57:49 AM Thursday, March 21, 2019
Last Modified1:12:26 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ICWarehouseCostingTypes: WarehouseCostingTypeIDWarehouseCostingTypeIDint4
False
1 - 1
WarehouseCostingTypevarchar(15)15
True
Descriptionvarchar(64)64
True
CostingFlagint4
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ICWarehouseCostingTypes: WarehouseCostingTypeIDPK_ICWarehouseCostingTypesWarehouseCostingTypeID
True
80
CREATE TABLE [dbo].[ICWarehouseCostingTypes]
(
[WarehouseCostingTypeID] [int] NOT NULL IDENTITY(1, 1),
[WarehouseCostingType] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Description] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CostingFlag] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ICWarehouseCostingTypes] ADD CONSTRAINT [PK_ICWarehouseCostingTypes] PRIMARY KEY CLUSTERED  ([WarehouseCostingTypeID]) ON [PRIMARY]
GO