Tables [dbo].[ReportRenderType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created4:57:08 PM Thursday, September 7, 2006
Last Modified11:13:41 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ReportRenderType: ReportRenderTypeIDReportRenderTypeIDint4
No
1 - 1
Indexes IX_Unique_ReportRenderTypeCode: ReportRenderTypeCodeReportRenderTypeCodevarchar(10)10
No
ReportRenderDescriptionvarchar(100)100
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_ReportRenderType: ReportRenderTypeIDPK_ReportRenderTypeReportRenderTypeID
Yes
80
IX_Unique_ReportRenderTypeCodeReportRenderTypeCode
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReportRenderType]
(
[ReportRenderTypeID] [int] NOT NULL IDENTITY(1, 1),
[ReportRenderTypeCode] [varchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[ReportRenderDescription] [varchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportRenderType] ADD CONSTRAINT [PK_ReportRenderType] PRIMARY KEY CLUSTERED  ([ReportRenderTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportRenderType] ADD CONSTRAINT [IX_Unique_ReportRenderTypeCode] UNIQUE NONCLUSTERED  ([ReportRenderTypeCode]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReportRenderType] TO [MssExec]
GRANT INSERT ON  [dbo].[ReportRenderType] TO [MssExec]
GRANT DELETE ON  [dbo].[ReportRenderType] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReportRenderType] TO [MssExec]
GO
Uses
Used By