Get-VBROracleDatabase (obsolete)
Short Description
Returns Oracle databases in restore point.
|
This cmdlet is obsolete. The cmdlet still works, but it is recommended to perform restore operations using the Get-VEORDatabase cmdlet. 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
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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
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