ToPointInTime プロパティ
データベース ログの復元のエンドポイントを取得します。値の設定も可能です。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.SmoExtended (Microsoft.SqlServer.SmoExtended.dll)
構文
'宣言
Public Property ToPointInTime As String
Get
Set
'使用
Dim instance As Restore
Dim value As String
value = instance.ToPointInTime
instance.ToPointInTime = value
public string ToPointInTime { get; set; }
public:
property String^ ToPointInTime {
String^ get ();
void set (String^ value);
}
member ToPointInTime : string with get, set
function get ToPointInTime () : String
function set ToPointInTime (value : String)
プロパティ値
型: System. . :: . .String
エンドポイントを識別する日時の値を示す文字列です。
使用例
次のコード例では、復元操作が停止する日付と時刻を設定します。
VB
Dim rs As Restore
rs = New Restore
rs.ToPointInTime = "Apr 15, 2020 12:00 AM"
PowerShell
$rs = new-object Microsoft.SqlServer.Management.Smo.Restore
$rs.ToPointInTime = "Apr 15, 2020 12:00 AM"