Tables [dbo].[XmlSystemRequestStatus]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)4
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_XmlSystemRequestStatus: XmlSystemRequestStatusIdXmlSystemRequestStatusIdint4
No
1 - 1
Namenvarchar(16)32
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_XmlSystemRequestStatus: XmlSystemRequestStatusIdPK_XmlSystemRequestStatusXmlSystemRequestStatusId
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XmlSystemRequestStatus]
(
[XmlSystemRequestStatusId] [int] NOT NULL IDENTITY(1, 1),
[Name] [nvarchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XmlSystemRequestStatus] ADD CONSTRAINT [PK_XmlSystemRequestStatus] PRIMARY KEY CLUSTERED  ([XmlSystemRequestStatusId]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[XmlSystemRequestStatus] TO [MssExec]
GRANT INSERT ON  [dbo].[XmlSystemRequestStatus] TO [MssExec]
GRANT DELETE ON  [dbo].[XmlSystemRequestStatus] TO [MssExec]
GRANT UPDATE ON  [dbo].[XmlSystemRequestStatus] TO [MssExec]
GO
Uses
Used By