다음을 통해 공유


LastLogBackupDate 속성

Gets the date and time when the transaction log was last backed up.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo

구문

‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public ReadOnly Property LastLogBackupDate As DateTime
    Get
‘사용 방법
Dim instance As Database
Dim value As DateTime

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

속성 값

형식: System. . :: . .DateTime
A DateTime object value that specifies the date and time when the transaction log was last backed up.

예제

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Display date data for the database.
Console.WriteLine(db.Name)
Console.WriteLine("Created on " + db.CreateDate)
Console.WriteLine("Last backed up on " + db.LastBackupDate)
Console.WriteLine("Log last backed up on " + db.LastLogBackupDate)