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 | Type | Required | Position | Accept |
---|---|---|---|---|---|
ApplicationRestorePoint | Specifies the restore point from which you want to get the databases. | Accepts the VBRApplicationRestorePoint object. To get this object, run the Get-VBRApplicationRestorePoint cmdlet. | True | Named | True (ByValue, |
Name | Filters the databases in the restore point by database name. | String[] | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Getting Oracle Database
This example shows how to get an Oracle database.
$oracledb = Get-VBRApplicationRestorePoint -Oracle -Name "oracle_prod" $products = Get-VBROracleDatabase -ApplicationRestorePoint $oracledb[0] -Name "Products" |
Perform the following steps:
- Run the Get-VBRApplicationRestorePoint cmdlet. Provide the Oracle parameter. Specify the Name parameter value. Save the result to the $oracledb variable.
The Get-VBRApplicationRestorePoint cmdlet will return an array of restore points. Mind the ordinal number of the necessary restore point (in our example, it is the first restore point in the array).
- Run the Get-VBROracleDatabase cmdlet. Set the $oracledb[0] variable as the ApplicationRestorePoint parameter value. Specify the Name parameter value. Save the result to the $products variable.
Related Commands