Tables [dbo].[ReportProfile]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)9
Created4:57:08 PM Thursday, September 7, 2006
Last Modified7:24:42 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ReportProfile: ReportProfilePriKeyReportProfilePriKeyint4
No
1 - 1
Descriptionvarchar(30)30
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_ReportProfile: ReportProfilePriKeyPK_ReportProfileReportProfilePriKey
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReportProfile]
(
[ReportProfilePriKey] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (30) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportProfile] ADD CONSTRAINT [PK_ReportProfile] PRIMARY KEY CLUSTERED  ([ReportProfilePriKey]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReportProfile] TO [MssExec]
GRANT INSERT ON  [dbo].[ReportProfile] TO [MssExec]
GRANT DELETE ON  [dbo].[ReportProfile] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReportProfile] TO [MssExec]
GO
Uses
Used By