Tables [dbo].[ICBarcodeSegments]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:57:23 AM Thursday, March 21, 2019
Last Modified1:11:14 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_ICBarcodeSegments: BarcodeSegmentIDBarcodeSegmentIDint4
False
BarcodeSegmentvarchar(30)30
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_ICBarcodeSegments: BarcodeSegmentIDPK_ICBarcodeSegmentsBarcodeSegmentID
True
80
CREATE TABLE [dbo].[ICBarcodeSegments]
(
[BarcodeSegmentID] [int] NOT NULL,
[BarcodeSegment] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ICBarcodeSegments] ADD CONSTRAINT [PK_ICBarcodeSegments] PRIMARY KEY CLUSTERED  ([BarcodeSegmentID]) ON [PRIMARY]
GO