Tables [dbo].[RequireableField]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)50
Created3:50:52 PM Thursday, December 6, 2018
Last Modified1:47:58 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_RequireableField: RequireableFieldIDRequireableFieldIDint4
No
1 - 1
Indexes IX_RequireableField_FieldName: FieldNameFieldNamevarchar(64)64
No
DisplayNamevarchar(64)64
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_RequireableField: RequireableFieldIDPK_RequireableFieldRequireableFieldID
Yes
IX_RequireableField_FieldNameFieldName
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[RequireableField]
(
[RequireableFieldID] [int] NOT NULL IDENTITY(1, 1),
[FieldName] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[DisplayName] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RequireableField] ADD CONSTRAINT [PK_RequireableField] PRIMARY KEY NONCLUSTERED  ([RequireableFieldID]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [IX_RequireableField_FieldName] ON [dbo].[RequireableField] ([FieldName]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[RequireableField] TO [MssExec]
GRANT INSERT ON  [dbo].[RequireableField] TO [MssExec]
GRANT DELETE ON  [dbo].[RequireableField] TO [MssExec]
GRANT UPDATE ON  [dbo].[RequireableField] TO [MssExec]
GO
Uses
Used By