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

Get-VEORRMANDatabase

In this article

    Short Description

    Returns Oracle databases backed-up with Veeam Plug-in for Oracle RMAN.

    Applies to

    Product Edition: Enterprise Plus

    Syntax

    Get-VEORRMANDatabase [-Session] <VEORRMANRestoreSession> [[-Name] <string[]>]  [<CommonParameters>]

    Detailed Description

    This cmdlet returns Oracle databases backed-up with Veeam Plug-in for Oracle RMAN.

    Parameters

    Parameter

    Description

    Type

    Required

    Position

    Accept Pipeline Input

    Accept Wildcard Characters

    Session

    Specifies an active restore session for an Oracle database backed-up with Veeam Plug-in for Oracle RMAN. The cmdlet will return an array of Oracle databases backed-up with Veeam Plug-in for Oracle RMAN within the specified restore session.

    Accepts the VEORRMANRestoreSession object. To get this object, run the Get-VEORRMANRestoreSession cmdlet.

    True

    0

    False

    False

    Name

    Specifies a name of the RMAN restore session. The cmdlet will return Oracle databases from the restore session with the specified name.

    String[]

    False

    1

    False

    False

    <CommonParameters>

    This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

    Examples

    Example 1. Getting Databases Within Specified Restore Session

    This example shows how to get all Oracle databases backed-up with Veeam Plug-in for Oracle RMAN within the specific restore session.

    $session = Get-VEORRMANRestoreSession

    Get-VEORRMANDatabase -Session $session[0]

    You must perform the following steps:

    1. Run the Get-VEORRMANRestoreSession cmdlet. Save the result to the $session variable.

    The Get-VEORRMANRestoreSession cmdlet will return an array of active restore sessions. Mind the ordinal number of the necessary restore session (in our example, it is the forth restore session in the array).

    1. Run the Get-VEORRMANDatabase cmdlet. Set the $session variable as the Session parameter value.

    Example 2. Getting Database With Specified Name

    This example shows how to get an Oracle database backed-up with Veeam Plug-in for Oracle RMAN with the specified name.

    $session = Get-VEORRMANRestoreSession

    Get-VEORRMANDatabase -Session $session[0] -Name "RMAN Database"

    You must perform the following steps:

    1. Run the Get-VEORRMANRestoreSession cmdlet. Save the result to the $session variable.

    The Get-VEORRMANRestoreSession cmdlet will return an array of active restore sessions. Mind the ordinal number of the necessary restore session (in our example, it is the first restore session in the array).

    1. Run the Get-VEORRMANDatabase cmdlet. Set the $session variable as the Session parameter value. Specify the Name parameter value.

    Related Commands

    Get-VEORRestoreSession