--- title: "Get-VEORRMANRestoreSession" description: "Returns active restore sessions started to explore Oracle databases backed up with Veeam Plug-in for Oracle RMAN. Product: Veeam Backup & Replication Product Edition: Enterprise Plus, Veeam Universal License This cmdlet returns an array of active" canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-veorrmanrestoresession.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Oracle > Get-VEORRMANRestoreSession" dateModified: "2026-08-18" --- # Get-VEORRMANRestoreSession ## Short Description Returns active restore sessions started 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 ``` Get-VEORRMANRestoreSession [] ``` ## Detailed Description This cmdlet returns an array of active restore sessions started to explore Oracle databases backed up with Veeam Plug-in for Oracle RMAN. ::: note - You can only get an array of restore sessions that are started in PowerShell. The cmdlet does not return restore sessions started in the Veeam Backup & Replication console. - The cmdlet only returns an array of restore sessions started within the same PowerShell session. ::: ## Parameters `` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Docs. ## Output Object The cmdlet returns the [`VEORRMANRestoreSession`](veorrmanrestoresession.md)`[]` array that contains settings of restore sessions for Oracle databases backed up with Veeam Plug-in for Oracle RMAN. ## Examples ::: example ### Example 1. Getting All Running Restore Sessions This command gets all running restore sessions for Oracle databases backed up with Veeam Plug-in for Oracle RMAN. Save the result to the `$session` variable to be able to use it with other cmdlets. ``` $session = Get-VEORRMANRestoreSession ``` ::: ::: example ### Example 2. Getting Specific Restore Session This example shows how to get a specific restore session for Oracle databases backed up with Veeam Plug-in for Oracle RMAN. ``` $session = Get-VEORRMANRestoreSession $session[0] ``` Perform the following steps: 1. Run the `Get-VEORRMANRestoreSession` cmdlet. Save the result to the `$session` variable. 2. Specify the necessary ordinal number of the restore session for the `$session` variable. Note the ordinal number of the necessary restore session. In this example, it is the first restore session in the array. :::