Tables [dbo].[ReportSystemLocation]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)15
Created4:06:24 PM Thursday, December 6, 2018
Last Modified7:24:42 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Primary Key PK_ReportSystemLocation: ReportSystemLocationIDReportSystemLocationIDint4
No
1 - 1
Indexes IX_ReportSystemLocation_InternalIdentifier: InternalIdentifierInternalIdentifiernvarchar(4)8
Yes
Indexes IX_ReportSystemLocation_Description: DescriptionDescriptionnvarchar(64)128
Yes
CanUseLetterbit1
No
((0))
Indexes Indexes
NameColumnsUnique
Primary Key PK_ReportSystemLocation: ReportSystemLocationIDPK_ReportSystemLocationReportSystemLocationID
Yes
IX_ReportSystemLocation_DescriptionDescription
Yes
IX_ReportSystemLocation_InternalIdentifierInternalIdentifier
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ReportSystemLocation]
(
[ReportSystemLocationID] [int] NOT NULL IDENTITY(1, 1),
[InternalIdentifier] [nvarchar] (4) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Description] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CanUseLetter] [bit] NOT NULL CONSTRAINT [DF_ReportSystemLocation_CanUseLetter] DEFAULT ((0))
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ReportSystemLocation] ADD CONSTRAINT [PK_ReportSystemLocation] PRIMARY KEY NONCLUSTERED  ([ReportSystemLocationID]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_ReportSystemLocation_Description] ON [dbo].[ReportSystemLocation] ([Description]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_ReportSystemLocation_InternalIdentifier] ON [dbo].[ReportSystemLocation] ([InternalIdentifier]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ReportSystemLocation] TO [MssExec]
GRANT INSERT ON  [dbo].[ReportSystemLocation] TO [MssExec]
GRANT DELETE ON  [dbo].[ReportSystemLocation] TO [MssExec]
GRANT UPDATE ON  [dbo].[ReportSystemLocation] TO [MssExec]
GO
Uses
Used By