--- title: "New-VBRPluggableDatabasesOptions" description: "Creates the pluggable database settings for application backup policies. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet applies to application backup policies for Veeam Plug-In for Oracle RMAN." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrpluggabledatabasesoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Plug-Ins for Enterprise Applications, MongoDB Backup and Epic EHR System Protection > Working with Managed Veeam Plug-Ins, MongoDB Backup and Epic EHR System Protection > Application Backup Policy Settings for Veeam Plug-In for Oracle RMAN > New-VBRPluggableDatabasesOptions" dateModified: "2026-08-19" --- # New-VBRPluggableDatabasesOptions ## Short Description Creates the pluggable database settings for application backup policies. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRPluggableDatabasesOptions [-ProcessingMode ] [-ProcessingInclusion ] [-ProcessingExclusion ] [] ``` ## Detailed Description This cmdlet applies to application backup policies for Veeam Plug-In for Oracle RMAN. This cmdlet creates pluggable database settings. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ProcessingExclusion

For the AllExceptSelected processing mode.

Specifies databases to exclude from the backup scope.

String[]

False

Named

False

ProcessingInclusion

For the SelectedOnly processing mode.

Specifies databases to include in the backup scope.

String[]

False

Named

False

ProcessingMode

Specifies the processing mode:

  • All: to process all detected databases.
  • AllExceptSelected: to process all detected databases except excluded databases.
  • SelectedOnly: to process only specified databases.

VBRPluggableDatabasesProcessingMode

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRPluggableDatabasesOptions` object that defines pluggable database settings for Oracle RMAN. ## Examples ::: example ### Creating Pluggable Database Settings for Application Backup Policies for Veeam Plug-In for Oracle RMAN This command creates the pluggable database settings for application backup policies for Veeam Plug-In for Oracle RMAN. The policy will process all detected pluggable databases. ``` New-VBRPluggableDatabasesOptions -ProcessingMode All ``` :::