Tables [dbo].[RPReportSecurity]
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 NullsIdentity
Cluster Primary Key PK_RPReportSecurity: ReportSecurityIDReportSecurityIDint4
False
1 - 1
Foreign Keys FK_RPReportSecurity_ReportID_RPReports: [dbo].[RPReports].ReportIDReportIDint4
False
SecuredObjectIDvarchar(32)32
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK_RPReportSecurity: ReportSecurityIDPK_RPReportSecurityReportSecurityID
True
80
NameColumns
FK_RPReportSecurity_ReportID_RPReportsReportID->[dbo].[RPReports].[ReportID]
CREATE TABLE [dbo].[RPReportSecurity]
(
[ReportSecurityID] [int] NOT NULL IDENTITY(1, 1),
[ReportID] [int] NOT NULL,
[SecuredObjectID] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPReportSecurity] ADD CONSTRAINT [PK_RPReportSecurity] PRIMARY KEY CLUSTERED  ([ReportSecurityID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RPReportSecurity] ADD CONSTRAINT [FK_RPReportSecurity_ReportID_RPReports] FOREIGN KEY ([ReportID]) REFERENCES [dbo].[RPReports] ([ReportID])
GO