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.

Get-VBROracleDatabase (obsolete) Note:

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
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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

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