Database.LastBackupDate Property

Gets the date and time when the database was last backed up.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public ReadOnly Property LastBackupDate As DateTime
    Get
'Usage
Dim instance As Database
Dim value As DateTime

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

Property Value

Type: System.DateTime
A DateTime object value that specifies the date and time when the database was last backed up.

Examples

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