Start-VEORRMANRestoreSession
Short Description
Starts a restore session to explore Oracle databases backed up with Veeam Plug-in for Oracle RMAN.
Product: Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
|
Start-VEORRMANRestoreSession -Backup <IVEORRMANBackup> [<CommonParameters>] |
Detailed Description
This cmdlet starts a restore session for Oracle databases backed up with Veeam Plug-in for Oracle RMAN. Within the restore session, you can get backed-up databases and restore these databases.
Run the Get-VEORRMANDatabaseReturns Oracle databases backed up with Veeam Plug-in for Oracle RMAN. cmdlet to get Oracle databases backed up with Veeam Plug-in for Oracle RMAN.
Run the Restore-VEORRMANDatabaseRestores an Oracle database backed up with Veeam Plug-in for Oracle RMAN. cmdlet to restore Oracle databases backed up with Veeam Plug-in for Oracle RMAN.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Backup |
Specifies an RMAN plug-in backup. The cmdlet will start a restore session from this backup.
Accepts the |
|
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.
Output Object
The cmdlet returns the VEORRMANRestoreSession object that contains settings of the restore session for Oracle databases backed up with Veeam Plug-in for Oracle RMAN.
Examples
Starting Restore Session
This example shows how to start a restore session for an Oracle database backed up with Veeam Plug-in for Oracle RMAN.
|
$backup = Get-VEORRMANBackup -Name "Oracle RMAN*" Start-VEORRMANRestoreSession -Backup $backup |
Perform the following steps:
- Run the
Get-VEORRMANBackupcmdlet. Specify theNameparameter value. Use the wildcard * character to get all backups whose names begin with “Oracle RMAN”. Save the result to the$backupvariable. - Run the
Start-VEORRMANRestoreSessioncmdlet. Set the$backupvariable as theBackupparameter value.
Related Commands