Tables [dbo].[XmlSystemRequestType]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)2
Created1:55:28 PM Wednesday, April 10, 2024
Last Modified1:55:31 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_XmlSystemRequestType: XmlSystemRequestTypeIdXmlSystemRequestTypeIdint4
No
1 - 1
Namenvarchar(16)32
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_XmlSystemRequestType: XmlSystemRequestTypeIdPK_XmlSystemRequestTypeXmlSystemRequestTypeId
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XmlSystemRequestType]
(
[XmlSystemRequestTypeId] [int] NOT NULL IDENTITY(1, 1),
[Name] [nvarchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XmlSystemRequestType] ADD CONSTRAINT [PK_XmlSystemRequestType] PRIMARY KEY CLUSTERED  ([XmlSystemRequestTypeId]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XmlSystemRequestType] TO [MssExec]
GRANT INSERT ON  [dbo].[XmlSystemRequestType] TO [MssExec]
GRANT DELETE ON  [dbo].[XmlSystemRequestType] TO [MssExec]
GRANT UPDATE ON  [dbo].[XmlSystemRequestType] TO [MssExec]
GO
Uses
Used By