次の方法で共有


Restore.StandbyFile プロパティ

SQL Server インスタンスのイメージング方法の一部として使用される UNDO ファイルの名前を取得します。値の設定も可能です。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.SmoExtended (Microsoft.SqlServer.SmoExtended.dll)

構文

'宣言
Public Property StandbyFile As String 
    Get 
    Set
'使用
Dim instance As Restore 
Dim value As String 

value = instance.StandbyFile

instance.StandbyFile = value
public string StandbyFile { get; set; }
public:
property String^ StandbyFile {
    String^ get ();
    void set (String^ value);
}
member StandbyFile : string with get, set
function get StandbyFile () : String 
function set StandbyFile (value : String)

プロパティ値

型: System.String
UNDO ファイルの名前を示す String です。

説明

元に戻すことによるデータベース ログの復元は、SQL Server データベースの読み取り専用のイメージに対して使用でき、重要なインスタンスのスタンバイ イメージを維持するための 1 つの方法を提供します。

使用例

次のコード例では、データベースの復元操作の UNDO ファイルとして使用できるバックアップ ファイルの場所を設定します。

VB

Dim rs As Restore
rs = New Restore
rs.StandbyFile = "C:\AdventureWorks2012Backup.bak"

PowerShell

$rs = new-object Microsoft.SqlServer.Management.Smo.Restore
$rs.StandbyFile = "C:\AdventureWorks2012Backup.bak"

関連項目

参照

Restore クラス

Microsoft.SqlServer.Management.Smo 名前空間

その他の技術情報

RESTORE (Transact-SQL)

SQL Server データベースのバックアップと復元