This is an archive version of the document. To get the most up-to-date information, see the current version.

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
Pipeline
Input

Accept
Wildcard
Characters

ApplicationRestorePoint

Specifies the restore point from which you want to get the databases.

Accepts VBRApplicationRestorePoint type.

True

Named

True (ByValue,
ByProperty
Name)

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

VBROracleDatabase

Example

This example shows how to get an Oracle database:

  1. Get the list of restore points for the Oracle databases created by VSS-aware backup of the "oracle_prod" virtual machine.
  2. 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

Get-VBROracleDatabaseRestoreInterval