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

Get-VEORDatabaseRestoreInterval

In this article

    Short Description

    Returns details on available restore period for backed-up Oracle databases.

    Applies to Veeam Backup & Replication

    Product Edition: Enterprise, Enterprise Plus

    Syntax

    Get-VEORDatabaseRestoreInterval [-Database] <VEORDatabase>  [<CommonParameters>]

    Detailed Description

    This cmdlet returns details on available restore period for backed-up Oracle databases.

    Parameters

    Parameter

    Description

    Type

    Required

    Position

    Accept Pipeline Input

    Accept Wildcard Characters

    Database

    Specifies a backed-up Oracle database. The cmdlet will return information on available restore period for the specified database.

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

    True

    0

    True (ByValue)

    False

    <CommonParameters>

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

    Return Type

    The cmdlet returns the VEORDatabaseRestoreInterval object that contains details on available restore period for backed-up Oracle database.

    Examples

    Getting Details on Available Restore Period for Backed-up Oracle Database

    This example shows how to get details on an available restore period for a backed-up Oracle database.

    $session = Get-VEORRestoreSession

    $database = Get-VEORDatabase -Session $session[0] -Name "Oracle database"

    Get-VEORDatabaseRestoreInterval -Database $database

    You must perform the following steps:

    1. Run the Get-VEORRestoreSession cmdlet. Save the result to the $session variable.
    2. Run the Get-VEORDatabase cmdlet. Set the $session variable as the Session parameter value. Specify the Name parameter value. Save the result to the $database variable.
    3. Run the Get-VEORDatabaseRestoreInterval cmdlet. Set the $database variable as the Database parameter value.

    Related Commands