Restore.Partial 속성

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

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

구문

‘선언
Public Property Partial As Boolean 
    Get 
    Set
‘사용 방법
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)

속성 값

유형: 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).

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

참고 항목

참조

Restore 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

RESTORE(Transact-SQL)

SQL Server 데이터베이스 백업 및 복원