Tables [dbo].[InternationalCustomsInspectionLocation]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)13
Created9:06:38 AM Friday, December 7, 2018
Last Modified9:06:54 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_InternationalCustomsInspectionLocation: InternationalCustomsInspectionLocationIDInternationalCustomsInspectionLocationIDint4
No
1 - 1
Cluster Key IX_InternationalCustomsInspectionLocation_Location: LocationLocationvarchar(64)64
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_InternationalCustomsInspectionLocation: InternationalCustomsInspectionLocationIDPK_InternationalCustomsInspectionLocationInternationalCustomsInspectionLocationID
Yes
Cluster Key IX_InternationalCustomsInspectionLocation_Location: LocationIX_InternationalCustomsInspectionLocation_LocationLocation
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[InternationalCustomsInspectionLocation]
(
[InternationalCustomsInspectionLocationID] [int] NOT NULL IDENTITY(1, 1),
[Location] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[InternationalCustomsInspectionLocation] ADD CONSTRAINT [PK_InternationalCustomsInspectionLocation] PRIMARY KEY NONCLUSTERED  ([InternationalCustomsInspectionLocationID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[InternationalCustomsInspectionLocation] ADD CONSTRAINT [IX_InternationalCustomsInspectionLocation_Location] UNIQUE CLUSTERED  ([Location]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[InternationalCustomsInspectionLocation] TO [MssExec]
GRANT INSERT ON  [dbo].[InternationalCustomsInspectionLocation] TO [MssExec]
GRANT DELETE ON  [dbo].[InternationalCustomsInspectionLocation] TO [MssExec]
GRANT UPDATE ON  [dbo].[InternationalCustomsInspectionLocation] TO [MssExec]
GO
Uses
Used By