Costruttore Audit (Server, String)
Initializes a new instance of the Server class on the specified instance of SQL Server and with the specified name.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
Public Sub New ( _
server As Server, _
name As String _
)
'Utilizzo
Dim server As Server
Dim name As String
Dim instance As New Audit(server, _
name)
public Audit(
Server server,
string name
)
public:
Audit(
Server^ server,
String^ name
)
new :
server:Server *
name:string -> Audit
public function Audit(
server : Server,
name : String
)
Parametri
- server
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .Server
A Server object that specifies the server in which to create the Audit object.
- name
Tipo: System. . :: . .String
A String object that specifies the name of the audit log to be created.
Esempi
The following code example demonstrates how to create a new instance of the Audit class for the specified server and audit log name.
C#
using System;
using Microsoft.SqlServer.Management.Smo;
namespace samples
{
class Program
{
static void Main(string[] args)
{
Server dbServer = new Server("(local)");
Audit dbAudit = new Audit(dbServer, "Test Audit");
}
}
}
Powershell
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbAudit = New-Object Microsoft.SqlServer.Management.Smo.Audit($dbServer, "Test Audit")
Vedere anche