Tables [dbo].[InternationalBookingNumberLocationType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)11
Created9:02:24 AM Friday, December 7, 2018
Last Modified9:02:42 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_InternationalBookingNumberLocationType: InternationalBookingNumberLocationTypeIDInternationalBookingNumberLocationTypeIDint4
No
1 - 1
Cluster Key IX_InternationalBookingNumberLocationType_Description: DescriptionDescriptionvarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_InternationalBookingNumberLocationType: InternationalBookingNumberLocationTypeIDPK_InternationalBookingNumberLocationTypeInternationalBookingNumberLocationTypeID
Yes
Cluster Key IX_InternationalBookingNumberLocationType_Description: DescriptionIX_InternationalBookingNumberLocationType_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[InternationalBookingNumberLocationType]
(
[InternationalBookingNumberLocationTypeID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[InternationalBookingNumberLocationType] ADD CONSTRAINT [PK_InternationalBookingNumberLocationType] PRIMARY KEY NONCLUSTERED  ([InternationalBookingNumberLocationTypeID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[InternationalBookingNumberLocationType] ADD CONSTRAINT [IX_InternationalBookingNumberLocationType_Description] UNIQUE CLUSTERED  ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[InternationalBookingNumberLocationType] TO [MssExec]
GRANT INSERT ON  [dbo].[InternationalBookingNumberLocationType] TO [MssExec]
GRANT DELETE ON  [dbo].[InternationalBookingNumberLocationType] TO [MssExec]
GRANT UPDATE ON  [dbo].[InternationalBookingNumberLocationType] TO [MssExec]
GO
Uses
Used By