Start-VEORRMANRestoreSession
Short Description
Starts a restore session to explore Oracle databases backed up with Veeam Plug-in for Oracle RMAN.
Applies to
Veeam Backup & Replication
Product Edition: Enterprise Plus, Veeam Universal License
Syntax
Start-VEORRMANRestoreSession [-ServerName <String>] [-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-VEORRMANDatabase cmdlet to get Oracle databases backed up with Veeam Plug-in for Oracle RMAN.
Run the Restore-VEORRMANDatabase 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 backup. The cmdlet will start a restore session from this backup. | Accepts the IVEORRMANBackup object. To get this object, run the Get-VEORRMANBackup cmdlet. | False | Named | False |
ServerName | Specifies the name of the server where the Oracle database is located. Note: The ServerName parameter is depricated. Use the Backup parameter. | String | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters 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.
Example
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 "RMAN DB01" Start-VEORRMANRestoreSession -Backup $backup |
Perform the following steps:
- Run the Get-VEORRMANBackup cmdlet. Specify the Name parameter value. Save the result to the $backup variable.
- Run the Start-VEORRMANRestoreSession cmdlet. Set the $backup variable as the Backup parameter value.
Related Commands