Set-VBRPluggableDatabasesOptions
Short Description
Modifies the pluggable database settings for application backup policies.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRPluggableDatabasesOptions -Options <VBRPluggableDatabasesOptions> [-ProcessingMode <VBRPluggableDatabasesProcessingMode>] [-ProcessingInclusion <String[]>] [-ProcessingExclusion <String[]>] [<CommonParameters>] |
Detailed Description
This cmdlet applies to application backup policies for Veeam Plug-In for Oracle RMAN.
This cmdlet modifies pluggable database settings.
Note |
|
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Options |
Specifies the pluggable database settings that you plan to modify.
Accepts the |
|
True |
Named |
True (ByValue) |
|
ProcessingExclusion |
For the Specifies databases to exclude from the backup scope. |
|
False |
Named |
False |
|
ProcessingInclusion |
For the Specifies databases to include in the backup scope. |
|
False |
Named |
False |
|
ProcessingMode |
Specifies the processing mode:
|
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRPluggableDatabasesOptions object that defines pluggable database settings for Oracle RMAN.
Examples
Creating and Modifying Pluggable Database Settings for Application Backup Policies for Veeam Plug-In for Oracle RMAN
This example shows how to create and modify the pluggable database settings for application backup policies for Veeam Plug-In for Oracle RMAN. The modified policy will process only specified database.
|
$options = New-VBRPluggableDatabasesOptions -ProcessingMode All Set-VBRPluggableDatabasesOptions -Options $options -ProcessingMode SelectedOnly -ProcessingInclusion SH4 |
Perform the following steps:
- Run the
New-VBRPluggableDatabasesOptionsCreates the pluggable database settings for application backup policies. cmdlet. Set theAlloption for theProcessingModeparameter. Save the result as the$optionsvariable. - Run the
Set-VBRPluggableDatabasesOptionscmdlet. Set the$optionsvariable as theOptionsparameter value. Set theSelectedOnlyvalue for theProcessingModeparameter value. Specify theProcessingInclusionparameter value.
Related Commands