Share via


Restore.Partial-Eigenschaft

Gets or sets a Boolean property value that specifies whether a partial or full restore operation will be performed.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.SmoExtended (in Microsoft.SqlServer.SmoExtended.dll)

Syntax

'Declaration
Public Property Partial As Boolean 
    Get 
    Set
'Usage
Dim instance As Restore 
Dim value As Boolean 

value = instance.Partial

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

Eigenschaftswert

Typ: System.Boolean
A Boolean value that indicates whether this is a full or partial restore operation.If True, the restore operation is a partial restore. Otherwise, False (default).

Beispiele

The following code example sets the restore instance to perform a partial operation.

VB

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

PowerShell

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

Siehe auch

Verweis

Restore Klasse

Microsoft.SqlServer.Management.Smo-Namespace

Andere Ressourcen

RESTORE (Transact-SQL)

Sichern und Wiederherstellen von SQL Server-Datenbanken