Tables [dbo].[CrewReportLocation]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created9:41:13 AM Friday, December 7, 2018
Last Modified9:41:14 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_CrewReportLocation: CrewReportLocationIDCrewReportLocationIDint4
No
1 - 1
ReportLocationvarchar(64)64
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_CrewReportLocation: CrewReportLocationIDPK_CrewReportLocationCrewReportLocationID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[CrewReportLocation]
(
[CrewReportLocationID] [int] NOT NULL IDENTITY(1, 1),
[ReportLocation] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CrewReportLocation] ADD CONSTRAINT [PK_CrewReportLocation] PRIMARY KEY CLUSTERED  ([CrewReportLocationID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[CrewReportLocation] TO [MssExec]
GRANT INSERT ON  [dbo].[CrewReportLocation] TO [MssExec]
GRANT DELETE ON  [dbo].[CrewReportLocation] TO [MssExec]
GRANT UPDATE ON  [dbo].[CrewReportLocation] TO [MssExec]
GO
Uses
Used By