Audit.DestinationType プロパティ
監査ログ情報の記録先の種類 (たとえばファイルまたはアプリケーション ログ) を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property DestinationType As AuditDestinationType
Get
Set
'使用
Dim instance As Audit
Dim value As AuditDestinationType
value = instance.DestinationType
instance.DestinationType = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public AuditDestinationType DestinationType { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property AuditDestinationType DestinationType {
AuditDestinationType get ();
void set (AuditDestinationType value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member DestinationType : AuditDestinationType with get, set
function get DestinationType () : AuditDestinationType
function set DestinationType (value : AuditDestinationType)
プロパティ値
型: Microsoft.SqlServer.Management.Smo.AuditDestinationType
監査ログ情報の記録先の種類を表す AuditDestinationType オブジェクト。
使用例
次のコード例では、監査ログの記録先の種類を Windows セキュリティ イベント ログに設定する方法を示します。
C#
using System;
using Microsoft.SqlServer.Management.Smo;
namespace samples
{
class Program
{
static void Main(string[] args)
{
//Create the audit and set the destination file type
Server dbServer = new Server("(local)");
Audit dbAudit = new Audit(dbServer, "Test Audit");
dbAudit.DestinationType = AuditDestinationType.SecurityLog;
dbAudit.FilePath = "C:\\AuditDirectory";
dbAudit.Create();
}
}
}
Powershell
#Create the audit
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbAudit = New-Object Microsoft.SqlServer.Management.Smo.Audit($dbServer, "Test Audit")
$dbAudit.DestinationType = [Microsoft.SqlServer.Management.Smo.AuditDestinationType]'File'
$dbAudit.FilePath = "C:\AuditDirectory"
$dbAudit.Create()