Udostępnij za pośrednictwem


Właściwość Audit.DateLastModified

Pobiera Data i czas ostatniej modyfikacji dziennika inspekcji.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property DateLastModified As DateTime
    Get
'Użycie
Dim instance As Audit
Dim value As DateTime

value = instance.DateLastModified
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public DateTime DateLastModified { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property DateTime DateLastModified {
    DateTime get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member DateLastModified : DateTime
function get DateLastModified () : DateTime

Wartość właściwości

Typ: System.DateTime
A DateTime wartość obiektu systemu określająca czas i data ostatniej modyfikacji dziennika inspekcji.

Przykłady

Poniższy przykład kodu pokazuje jak data i czas po ostatniej modyfikacji dziennika inspekcji i wyświetla informacje na konsoli.

C#

using System;
using Microsoft.SqlServer.Management.Smo;

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            //Create the audit
            Server dbServer = new Server("(local)");
            Audit dbAudit = new Audit(dbServer, "Test Audit");
            dbAudit.DestinationType = AuditDestinationType.File;
            dbAudit.FilePath = "C:\\AuditDirectory";
            dbAudit.Create();

            //Display the date of the most recent modification to the 
            //log on the console
            DateTime auditModificationDate = dbAudit.DateLastModified;
            Console.WriteLine("The most recent modification of the  
                              audit log was made on " + 
                              auditModificationDate.ToString());
        }
    }
}

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()

#Display the date of the most recent modification to the log
Write-Host "The most recent modification of the audit log was made on" 
            $dbAudit.DateLastModified