次の方法で共有


AuditLevel Property

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

The AuditLevel property exposes SQL Server Authentication logging behavior.

構文

object
.AuditLevel [= value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list.
  • value
    A long integer specifying an authentication outcome as described in Settings.

Data Type

Long, enumerated

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetAuditType(SQLDMO_AUDIT_TYPE* pRetVal);
HRESULT SetAuditType(SQLDMO_AUDIT_TYPE NewValue);

Settings

Constant Value Description

SQLDMOAudit_All

3

Logs all authentication attempts regardless of success or failure.

SQLDMOAudit_Failure

2

Logs failed authentication.

SQLDMOAudit_None

0

Does not log authentication attempts.

SQLDMOAudit_Success

1

Logs successful authentication.

解説

SQL Server Authentication logging writes log entries to both the Microsoft SQL Server error log and the Windows application log.

For more information about SQL Server security and access control, see Notification Services のセキュリティの設定

Applies To:

IntegratedSecurity Object