Server.DeleteBackupHistory Method (DateTime)
SQL Server 2012
Deletes the backup history for this instance of SQL Server up until the specified date and time.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Visual Basic
'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)
PowerShell
$srv1 = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$odt = new-object System.DateTime(2005, 12, 12)
$srv1.DeleteBackupHistory($odt)
