Udostępnij przez


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

'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public ReadOnly Property LastBackupDate As DateTime
[SfcPropertyAttribute(SfcPropertyFlags.Expensive)] 
public DateTime LastBackupDate { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Expensive)] 
public:
property DateTime LastBackupDate {
    DateTime get ();
}
/** @property */
public DateTime get_LastBackupDate ()
public function get LastBackupDate () : DateTime

Property Value

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

Example

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

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.