Get-VBROracleDatabase (obsolete)
Short Description
Returns Oracle databases in restore point.
Note |
This cmdlet is no longer supported, use the Get-VEORDatabase cmdlet instead. To learn more about the Get-VEORDatabase cmdlet, see the Veeam Explorers PowerShell Reference. |
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Get-VBROracleDatabase -ApplicationRestorePoint <VBRApplicationRestorePoint> [-Name <string[]>][<CommonParameters>] |
Detailed Description
This cmdlet returns the list of Oracle databases available for restore from the selected restore point.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
ApplicationRestorePoint | Specifies the restore point from which you want to get the databases. Accepts VBRApplicationRestorePoint type. | True | Named | True (ByValue, | False |
Name | Filters the databases in the restore point by database name. | False | Named | False | True |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example
This example shows how to get an Oracle database:
- Get the list of restore points for the Oracle databases created by VSS-aware backup of the "oracle_prod" virtual machine.
- Get the latest restore point of the "Products" database and save it to the $products variable.
$oracledb = Get-VBRApplicationRestorePoint -Oracle -Name "oracle_prod" $products = Get-VBROracleDatabase -ApplicationRestorePoint $oracledb[0] -Name "Products" |
Related Commands