Tables [dbo].[ICPhysicalInventoryListStatuses]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:57:39 AM Thursday, March 21, 2019
Last Modified1:11:46 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK_ICPhysicalInventoryListStatuses: StatusIDStatusIDint4
False
100 - 1
Statusvarchar(32)32
False
StatusFlagint4
False
CreatorIDchar(8)8
False
UpdatorIDchar(8)8
False
CreateDatedatetime8
False
(getdate())
LastUpdatedatetime8
False
(getdate())
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ICPhysicalInventoryListStatuses: StatusIDPK_ICPhysicalInventoryListStatusesStatusID
True
80
CREATE TABLE [dbo].[ICPhysicalInventoryListStatuses]
(
[StatusID] [int] NOT NULL IDENTITY(100, 1),
[Status] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[StatusFlag] [int] 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_ICPhysicalInventoryListStatuses_CreateDate] DEFAULT (getdate()),
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_ICPhysicalInventoryListStatuses_LastUpdate] DEFAULT (getdate())
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ICPhysicalInventoryListStatuses] ADD CONSTRAINT [PK_ICPhysicalInventoryListStatuses] PRIMARY KEY CLUSTERED  ([StatusID]) ON [PRIMARY]
GO