Właściwość Audit.QueueDelay
Pobiera lub ustawia czas w milisekundach, które mogą upłynąć, zanim działania inspekcji są przetwarzane.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property QueueDelay As Integer
Get
Set
'Użycie
Dim instance As Audit
Dim value As Integer
value = instance.QueueDelay
instance.QueueDelay = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public int QueueDelay { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property int QueueDelay {
int get ();
void set (int value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member QueueDelay : int with get, set
function get QueueDelay () : int
function set QueueDelay (value : int)
Wartość właściwości
Typ: System.Int32
A Int32 wartość określająca liczbę milisekund, które mogą upłynąć, zanim działania inspekcji są przetwarzane.
Uwagi
Wartość domyślna 1000 (1 sekunda) jest minimalna wartość, którą zestaw.Maksymalna wartość, która może być zestaw jest 2 147 483 647 milisekund, co jest równoważne z 24 dni, 20 godzin, 31 minut, 23.647 sekund.Wartość 0 wskazuje synchroniczne dostawy.
Przykłady
Poniższy przykład kodu pokazuje jak zestaw opóźnienie kolejki do 5000 milisekund.
C#
using System;
using Microsoft.SqlServer.Management.Smo;
namespace samples
{
class Program
{
static void Main(string[] args)
{
//Create the audit and set the queue delay
Server dbServer = new Server("(local)");
Audit dbAudit = new Audit(dbServer, "Test Audit");
dbAudit.DestinationType = AuditDestinationType.File;
dbAudit.FilePath = "C:\\AuditDirectory";
dbAudit.QueueDelay = 5000;
dbAudit.Create();
}
}
}
PowerShell
#Create the audit and set the queue delay
$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.QueueDelay = 5000
$dbAudit.Create()