Partager via


DeleteBackupHistory méthode (DateTime)

Deletes the backup history for this instance of SQL Server up until the specified date and time.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
Public Sub DeleteBackupHistory ( _
    oldestDate As DateTime _
)
'Utilisation
Dim instance As Server
Dim oldestDate As DateTime

instance.DeleteBackupHistory(oldestDate)
public void DeleteBackupHistory(
    DateTime oldestDate
)
public:
void DeleteBackupHistory(
    DateTime oldestDate
)
member DeleteBackupHistory : 
        oldestDate:DateTime -> unit 
public function DeleteBackupHistory(
    oldestDate : DateTime
)

Paramètres

Notes

Use this method to remove old backup history logs from the instance of SQL Server. Backup history that is older than the date specified will be removed from the instance of SQL Server.

Exemples

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

'Delete the backup history before the date specified.
Dim odt As DateTime
odt = New DateTime(2005, 12, 12)
srv1.DeleteBackupHistory(odt)