Server.Audits 属性
Represents a collection of Audit objects. Each Audit object represents an audit log defined on the instance of SQL Server.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(Audit))> _
Public ReadOnly Property Audits As AuditCollection
Get
用法
Dim instance As Server
Dim value As AuditCollection
value = instance.Audits
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(Audit))]
public AuditCollection Audits { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(Audit))]
public:
property AuditCollection^ Audits {
AuditCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(Audit))>]
member Audits : AuditCollection
function get Audits () : AuditCollection
属性值
类型:Microsoft.SqlServer.Management.Smo.AuditCollection
A AuditCollection object that represents all the audit logs defined on the instance of SQL Server.
示例
C#
//Connect to the local server and create audits
Server srv = new Server("(local)");
testAudit1 = new Audit(srv, "First Test Audit");
testAudit1.DestinationType = AuditDestinationType.File;
testAudit1.FilePath = "C:\AuditDirectory";
testAudit1.Create();
testAudit2 = new Audit(srv, "Second Test Audit");
testAudit2.DestinationType = AuditDestinatinoType.File;
testAudit2.FilePath = "C:\AuditDirectory";
testAudit2.Create()
//Display the populated audit property
foreach (Audit a in srv.Audits)
{
Console.WriteLine(a.Name);
}
PowerShell
#Connect to the local server and create audits
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$testAudit1 = new-object Microsoft.SqlServer.Management.Smo.Audit($srv, "First Test Audit")
$testAudit1.DestinationType = [Microsoft.SqlServer.Management.Smo.AuditDestinationType]::File
$testAudit1.FilePath = "C:\AuditDirectory"
$testAudit2 = new-object Microsoft.SqlServer.Management.Smo.Audit($srv, "Second Test Audit")
$testAudit2.FilePath = "C:\AuditDirectory"
$testAudit2.DestinationType = [Microsoft.SqlServer.Management.Smo.AuditDestinationType]::File
$testAudit1.Create()
$testAudit2.Create()
#Display the populated audit property
foreach ($a in $srv.Audits)
{
Write-Host $a.Name
}
请参阅
参考
Microsoft.SqlServer.Management.Smo 命名空间