Get-VBROracleDatabaseRestoreInterval (obsolete)
Short Description
Shows interval of backups available for a selected database.
Note |
|
This cmdlet is no longer supported, use the |
Platform: VMware, Hyper-V
Product Edition: Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Get-VBROracleDatabaseRestoreInterval -Database <VBROracleDatabase> [<CommonParameters>] |
Detailed Description
This cmdlet shows the oldest and the most recent points in time (UTC) presenting the interval available for database restore. If you have database archived logs backed up appropriately, you will be able to restore the database to the necessary point in time within that interval.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept |
|---|---|---|---|---|---|
|
Database |
Specifies the database for which you want to get the intervals. |
Accepts the VBROracleDatabase object. To get this object, run the Get-VBROracleDatabase cmdlet. |
True |
Named |
True (ByValue, |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBROracleDatabaseRestoreInterval
Examples
Getting Available Restore Interval for Database
This example shows how to get the available restore interval for the Products database in the chosen restore point of the oracle_prod VM.
|
$restorepoint = Get-VBRApplicationRestorePoint -Oracle -Name "oracle_prod" $products = Get-VBROracleDatabase -ApplicationRestorePoint $restorepoint[2] -Name "Products" Get-VBROracleDatabaseRestoreInterval -Database $products From To ---- -- 02/11/2014 12:33:39 PM 10/28/2015 12:33:39 PM |
Perform the following steps:
- Run the
Get-VBRApplicationRestorePointReturns restore points created with the VSS-aware image processing enabled. cmdlet. Provide theOracleparameter. Specify theNameparameter value. Save the result to the$restorepointvariable. - Run the
Get-VBROracleDatabasecmdlet. Set the$restorepoint[2]variable as theApplicationRestorePointparameter value. Specify theNameparameter value. Save the result to the$productsvariable. - Run the
Get-VBROracleDatabaseRestoreIntervalcmdlet. Set the$productsvariable as theDatabaseparameter value.
Related Commands