Start-VEORRMANRestoreSession
Short Description
Starts restore sessions to explore Oracle databases backed up with the 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 restore sessions for Oracle databases backed up with the 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 the Veeam Plug-in for Oracle RMAN.
Run the Restore-VEORRMANDatabase cmdlet to restore Oracle databases backed up with the Veeam Plug-in for Oracle RMAN.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input | Accept Wildcard Characters |
---|---|---|---|---|---|---|
Backup | Specifies a 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 a name of the server where the Oracle database is located. Note: The ServerName parameter is depricated. Use the Backup parameter. | String | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Docs.
Examples
Example 1. Starting Restore Session
This example shows how to start a restore session of the RMAN DB01 Oracle database backed up with the Veeam Plug-in for Oracle RMAN.
Connect-VBRServer -Server "172.17.53.36" -User "Administrator" -Password "Password" $backup = Get-VEORRMANBackup -Name "RMAN DB01" Start-VEORRMANRestoreSession -Backup $backup |
Perform the following steps:
- Run the Connect-VBRServer cmdlet. Specify the Server and Password parameters values.
- 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