Get-VESQLPluginRestorePoint

Short Description

Returns restore points for a database backed up with Veeam Plug-in for Microsoft SQL Server.

Product: Veeam Backup & Replication

Product Edition: Enterprise Plus, Veeam Universal License

Syntax

Get-VESQLPluginRestorePoint [-Database] <VESQLPluginDatabase> [<CommonParameters>]

Detailed Description

This cmdlet returns available restore points for a database backed up with Veeam Plug-in for Microsoft SQL Server.

After you get the restore points, you can use the following cmdlets:

  • Get-VESQLPluginLogIntervalReturns details on the available restore period for a database backed up with Veeam Plug-in for Microsoft SQL Server. — to see the available restore period within a restore point.
  • Get-VESQLPluginDatabaseFileReturns database files for a database backed up with Veeam Plug-in for Microsoft SQL Server. — to get the available database files on a restore point.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Database

Specifies a database backed up with Veeam Plug-in for Microsoft SQL Server.

Accepts the VESQLPluginDatabase object. To get this object, run the Get-VESQLPluginDatabaseReturns databases backed up with Veeam Plug-in for Microsoft SQL Server. cmdlet.

VESQLPluginDatabase

True

0

True (ByValue)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Learn.

Output Object

The cmdlet returns the VESQLPluginRestorePoint[] object that contains an array of restore points for a database backed up with Veeam Plug-in for Microsoft SQL Server.

Examples

Getting All Restore Points for a Database

This command returns all restore points for specific database backed up with Veeam Plug-in for Microsoft SQL Server.

$session = Get-VESQLPluginRestoreSession

$database = Get-VESQLPluginDatabase -Session $session[0] -Name "location1"

$restorepoint = Get-VESQLPluginRestorePoint -Database $database

Perform the following steps:

  1. Run the Get-VESQLPluginRestoreSessionReturns active restore sessions started to explore and restore databases backed up with Veeam Plug-in for Microsoft SQL Server. cmdlet. Save the result to the $session variable.

    The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in this example, it is the first restore session in the array).

  2. Run the Get-VESQLPluginDatabaseReturns databases backed up with Veeam Plug-in for Microsoft SQL Server. cmdlet. Set the $session variable as the Session parameter value and select the necessary restore session. Specify the Name parameter value. Save the result to the $database variable.
  3. Run the Get-VESQLPluginRestorePoint cmdlet. Set the $database variable as the Database parameter value. Save the result to the $restorepoint variable to use it with other cmdlets.

Page updated 2026-08-20

Page content applies to build 13.1.1.18