--- title: "Get-VEORRMANDatabaseFile" description: "Returns full file names for an Oracle database backed up with Veeam Plug-in for Oracle RMAN. Product: Veeam Backup & Replication Product Edition: Community, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns full file names " canonical: "https://helpcenter.veeam.com/docs/vbr/explorers_powershell/get-veorrmandatabasefile.html" breadcrumb: "Veeam Explorers PowerShell Reference > Veeam Explorers PowerShell Reference > Veeam Explorer for Oracle > Get-VEORRMANDatabaseFile" dateModified: "2026-08-18" --- # Get-VEORRMANDatabaseFile ## Short Description Returns full file names for an Oracle database backed up with Veeam Plug-in for Oracle RMAN. **Product**: Veeam Backup & Replication **Product Edition**: Community, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VEORRMANDatabaseFile [-Database] [] ``` ## Detailed Description This cmdlet returns full file names for an Oracle database backed up with Veeam Plug-in for Oracle RMAN. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Database

Specifies an Oracle database backed up with Veeam Plug-in for Oracle RMAN. The cmdlet will return an array of full file names for the specified database.

Accepts the VEORRMANDatabase object. To get this object, run the Get-VEORRMANDatabase cmdlet

VEORRMANDatabase

True

0

True (ByValue)

`` 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 [`VEORRMANDatabaseFile`](veorrmandatabasefile.md)`[]` array that contains the full file names for the Oracle database backed up with Veeam Plug-in for Oracle RMAN. ## Examples ::: example ### Getting List of Full File Names for Backed-Up Oracle Database This example shows how to get a list of full file names for an Oracle database backed up with Veeam Plug-in for Oracle RMAN. ``` $session = Get-VEORRMANRestoreSession $database = Get-VEORRMANDatabase -Session $session[0] -Name "orclrman" Get-VEORRMANDatabaseFile -Database $database ``` Perform the following steps: 1. Run the [`Get-VEORRMANRestoreSession`](get-veorrmanrestoresession.md) cmdlet. Save the result to the `$session` variable. The cmdlet will return an array of active restore sessions. Note the ordinal number of the necessary restore session (in this example, it is the first restore session in the array). 2. Run the [`Get-VEORRMANDatabase`](get-veorrmandatabase.md) cmdlet. Set the `$session` variable as the `Session` parameter value and select the necessary restore session. Specify the `Name` parameter value. Save the result to the `$database` variable. 3. Run the `Get-VEORRMANDatabaseFile` cmdlet. Set the `$database` variable as the `Database` parameter value. ::: ## Related Commands - [`Get-VEORRMANRestoreSession`](get-veorrmanrestoresession.md) - [`Get-VEORRMANDatabase`](get-veorrmandatabase.md)