Restore.ClearSuspectPageTableAfterRestore 属性

Gets or sets a Boolean value that determines whether entries in the suspect page table will be deleted following the restore operation.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.SmoExtended(在 Microsoft.SqlServer.SmoExtended.dll 中)

语法

声明
Public Property ClearSuspectPageTableAfterRestore As Boolean 
    Get 
    Set
用法
Dim instance As Restore 
Dim value As Boolean 

value = instance.ClearSuspectPageTableAfterRestore

instance.ClearSuspectPageTableAfterRestore = value
public bool ClearSuspectPageTableAfterRestore { get; set; }
public:
property bool ClearSuspectPageTableAfterRestore {
    bool get ();
    void set (bool value);
}
member ClearSuspectPageTableAfterRestore : bool with get, set
function get ClearSuspectPageTableAfterRestore () : boolean 
function set ClearSuspectPageTableAfterRestore (value : boolean)

属性值

类型:System.Boolean
A Boolean value that indicates whether the suspect page table will be cleared.If True, the suspect page table is cleared following the restore operation. Otherwise, False (default).

示例

The following code example shows how to set the suspect page table to be cleared after the restore operation is complete.

VB

Dim rs As Restore
rs = New Restore
rs.ClearSuspectPageTableAfterRestore = true

PowerShell

$rs = new-object Microsoft.SqlServer.Management.Smo.Restore
$rs.ClearSuspectPageTableAfterRestore = $TRUE

请参阅

参考

Restore 类

Microsoft.SqlServer.Management.Smo 命名空间

其他资源

RESTORE (Transact-SQL)

SQL Server 数据库的备份和还原