Nota:
El acceso a esta página requiere autorización. Puede intentar iniciar sesión o cambiar directorios.
El acceso a esta página requiere autorización. Puede intentar cambiar los directorios.
Deletes the backup history for this instance of SQL Server up until the specified date and time.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
Public Sub DeleteBackupHistory ( _
oldestDate As DateTime _
)
'Uso
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
)
Parámetros
- oldestDate
Tipo: System.DateTime
A DateTime system object value that specifies the date and time before which to delete the backup history.
Comentarios
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.
Ejemplos
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)
Vea también
Referencia
Sobrecarga de DeleteBackupHistory
Espacio de nombres Microsoft.SqlServer.Management.Smo
Otros recursos
Realizar copias de seguridad y restaurar bases de datos de SQL Server