Tables [dbo].[RPReportTypes]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:58:50 AM Thursday, March 21, 2019
Last Modified1:14:04 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_RPReportTypes: ReportTypeIDReportTypeIDint4
False
ReportTypevarchar(64)64
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_RPReportTypes: ReportTypeIDPK_RPReportTypesReportTypeID
True
80
CREATE TABLE [dbo].[RPReportTypes]
(
[ReportTypeID] [int] NOT NULL,
[ReportType] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPReportTypes] ADD CONSTRAINT [PK_RPReportTypes] PRIMARY KEY CLUSTERED  ([ReportTypeID]) ON [PRIMARY]
GO