Table of Contents

Class SecuritySchema.ServerAuditSpecification

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.server_audit_specifications (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Contains information about the server audit specifications in a SQL Server audit on a server instance. For more information on SQL Server Audit, see SQL Server Audit (Database Engine).


See sys.server_audit_specifications.

[Table(Schema = "sys", Name = "server_audit_specifications", IsView = true)]
public class SecuritySchema.ServerAuditSpecification
Inheritance
SecuritySchema.ServerAuditSpecification
Extension Methods

Properties

AuditGuid

GUID for the audit that contains this specification. Used during enumeration of member server audit specifications during server startup.

[Column("audit_guid")]
[Nullable]
public Guid? AuditGuid { get; set; }

Property Value

Guid?

CreateDate

Date the audit server specification was created.

[Column("create_date")]
[NotNull]
public object CreateDate { get; set; }

Property Value

object

IsStateEnabled

Audit specification state:

0 - DISABLED

1 -ENABLED

[Column("is_state_enabled")]
[Nullable]
public byte? IsStateEnabled { get; set; }

Property Value

byte?

ModifiedDate

Date the audit server specification was last modified.

[Column("modified_date")]
[NotNull]
public object ModifiedDate { get; set; }

Property Value

object

Name

Name of the server specification.

[Column("name")]
[NotNull]
public object Name { get; set; }

Property Value

object

ServerSpecificationID

ID of the server_specification.

[Column("server_specification_id")]
[NotNull]
public object ServerSpecificationID { get; set; }

Property Value

object