Tables [dbo].[RPReportParamTypes2]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created12:58:49 AM Thursday, March 21, 2019
Last Modified1:14:03 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_RPReportParamTypes2: ParamTypeIDParamTypeIDint4
False
ParamTypevarchar(64)64
False
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_RPReportParamTypes2: ParamTypeIDPK_RPReportParamTypes2ParamTypeID
True
80
CREATE TABLE [dbo].[RPReportParamTypes2]
(
[ParamTypeID] [int] NOT NULL,
[ParamType] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPReportParamTypes2] ADD CONSTRAINT [PK_RPReportParamTypes2] PRIMARY KEY CLUSTERED  ([ParamTypeID]) ON [PRIMARY]
GO