다음을 통해 공유


DeleteBackupHistory 메서드 (DateTime)

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

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo

구문

‘선언
Public Sub DeleteBackupHistory ( _
    oldestDate As DateTime _
)
‘사용 방법
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
)

매개 변수

주의

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.

예제

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