Tables [dbo].[EDIMileageType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)3
Created1:07:43 PM Monday, January 28, 2013
Last Modified11:13:38 AM Monday, August 19, 2013
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_EDIMileageTypeID: EDIMileageTypeIDEDIMileageTypeIDint4
No
1 - 1
Indexes IX_EDIMileageType_Description: DescriptionDescriptionvarchar(32)32
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_EDIMileageTypeID: EDIMileageTypeIDPK_EDIMileageTypeIDEDIMileageTypeID
Yes
IX_EDIMileageType_DescriptionDescription
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[EDIMileageType]
(
[EDIMileageTypeID] [int] NOT NULL IDENTITY(1, 1),
[Description] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[EDIMileageType] ADD CONSTRAINT [PK_EDIMileageTypeID] PRIMARY KEY CLUSTERED  ([EDIMileageTypeID]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_EDIMileageType_Description] ON [dbo].[EDIMileageType] ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[EDIMileageType] TO [MssExec]
GRANT INSERT ON  [dbo].[EDIMileageType] TO [MssExec]
GRANT DELETE ON  [dbo].[EDIMileageType] TO [MssExec]
GRANT UPDATE ON  [dbo].[EDIMileageType] TO [MssExec]
GO
Uses
Used By