Tables [dbo].[BiReportingViewStatus]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)1
Created9:23:26 AM Friday, December 7, 2018
Last Modified9:23:44 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Primary Key PK_BiReportingViewStatus: BiReportingViewStatusIDCheck Constraints CK_BiReportingViewStatusID : ([BiReportingViewStatusID]=(1))BiReportingViewStatusIDint4
No
CurrentStatusvarchar(256)256
Yes
LastUpdateddatetime8
Yes
Indexes Indexes
NameColumnsUnique
Primary Key PK_BiReportingViewStatus: BiReportingViewStatusIDPK_BiReportingViewStatusBiReportingViewStatusID
Yes
Check Constraints Check Constraints
NameOn ColumnConstraint
CK_BiReportingViewStatusIDBiReportingViewStatusID([BiReportingViewStatusID]=(1))
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[BiReportingViewStatus]
(
[BiReportingViewStatusID] [int] NOT NULL,
[CurrentStatus] [varchar] (256) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[LastUpdated] [datetime] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[BiReportingViewStatus] ADD CONSTRAINT [CK_BiReportingViewStatusID] CHECK (([BiReportingViewStatusID]=(1)))
GO
ALTER TABLE [dbo].[BiReportingViewStatus] ADD CONSTRAINT [PK_BiReportingViewStatus] PRIMARY KEY NONCLUSTERED  ([BiReportingViewStatusID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[BiReportingViewStatus] TO [MssExec]
GRANT INSERT ON  [dbo].[BiReportingViewStatus] TO [MssExec]
GRANT DELETE ON  [dbo].[BiReportingViewStatus] TO [MssExec]
GRANT UPDATE ON  [dbo].[BiReportingViewStatus] TO [MssExec]
GO
Uses