Get-VESQLPluginDatabase
Short Description
Returns databases backed up with Veeam Plug-in for Microsoft SQL Server.
Applies to
Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
Get-VESQLPluginDatabase [-Session] <VESQLPluginRestoreSession> [-Name <String[]>] [-InstanceName <String[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns an array of Microsoft SQL Server databases backed up with Veeam Plug-in for Microsoft SQL Server.
After you get the databases, you can use the following cmdlets:
- Get-VESQLPluginRestorePoint — to get the available restore points for a specific database.
- Start-VESQLPluginDatabaseRestore — to restore your data.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
|---|---|---|---|---|---|
Session | Specifies an active restore session. The cmdlet will return an array of databases within the specified restore session. | Accepts the VESQLPluginRestoreSession object. To get this object, run the Get-VESQLPluginRestoreSession cmdlet. | True | 0 | True (ByValue) |
Name | Specifies an array of names for Microsoft SQL Server databases. The cmdlet will return an array of databases with the specified names. This parameter accepts wildcard characters. | String[] | False | Named | False |
InstanceName | Specifies an array of names for Microsoft SQL Server instances. The cmdlet will return an array of databases located on the specified instances. This parameter accepts wildcard characters. | String[] | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Output Object
The cmdlet returns the VESQLPluginDatabase[] object that contains an array of databases backed up by Veeam Plug-in for Microsoft SQL Server.
Examples
Example 1. Getting Microsoft SQL Server Databases Within Specified Restore Session
This example shows how to get a list of all Microsoft SQL Server databases within the specified restore session.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in our example, it is the second restore session in the array).
|
Example 2. Getting Microsoft SQL Server Databases with Specified Name
This example shows how to get all Microsoft SQL Server databases with the specified name.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session. In our example, it is the first restore session in the array.
|
Example 3. Getting Microsoft SQL Server Databases with Specific Names Belonging to Specific Instances
This example shows how to get all Microsoft SQL Server databases with specific names that belong to specific instances.
Perform the following steps:
The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session. In our example, it is the first restore session in the array.
Save the result to the $database variable to use it with other cmdlets. |
Related Commands