Get-VESQLPluginDatabaseFile

Short Description

Returns database files 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-VESQLPluginDatabaseFile [-RestorePoint] <VESQLPluginRestorePoint> [<CommonParameters>]

Detailed Description

This cmdlet returns an array of database files for a database backed up with Veeam Plug-in for Microsoft SQL Server.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

RestorePoint

Specifies a restore point for a Microsoft SQL Server database. The cmdlet will return an array of database files that are available on that restore point.

Accepts the VESQLPluginRestorePoint object. To get this object, run the Get-VESQLPluginRestorePointReturns restore points for a database backed up with Veeam Plug-in for Microsoft SQL Server. cmdlet.

VESQLPluginRestorePoint

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 VESQLPluginDatabaseFile[] object that contains an array of database files for a database backed up with Veeam Plug-in for Microsoft SQL Server.

Examples

Getting List of Database Files for Microsoft SQL Server Database

This example shows how to get a list of database files for a database backed up with Veeam Plug-in for Microsoft SQL Server.

$session = Get-VESQLPluginRestoreSession

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

$restorepoint = Get-VESQLPluginRestorePoint -Database $database

$dbfiles = Get-VESQLPluginDatabaseFile -RestorePoint $restorepoint

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-VESQLPluginRestorePointReturns restore points for a database backed up with Veeam Plug-in for Microsoft SQL Server. cmdlet. Set the $database variable as the Database parameter value. Save the result to the $restorepoint variable.
  4. Run the Get-VESQLPluginDatabaseFile cmdlet. Set the $restorepoint variable as the RestorePoint parameter value. Save the result to the $dbfiles variable to use it with other cmdlets.

Page updated 2026-08-20

Page content applies to build 13.1.1.18