Tables [dbo].[ReportType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)4
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_ReportType: ReportTypeIDReportTypeIDsmallint2
No
1 - 1
ReportTypeNamevarchar(60)60
No
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_ReportType: ReportTypeIDPK_ReportTypeReportTypeID
Yes
80
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReportType]
(
[ReportTypeID] [smallint] NOT NULL IDENTITY(1, 1),
[ReportTypeName] [varchar] (60) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportType] ADD CONSTRAINT [PK_ReportType] PRIMARY KEY CLUSTERED  ([ReportTypeID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReportType] TO [MssExec]
GRANT INSERT ON  [dbo].[ReportType] TO [MssExec]
GRANT DELETE ON  [dbo].[ReportType] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReportType] TO [MssExec]
GO
Uses
Used By