--- title: "Set-VBRSAPOnOracleProcessingOptions" description: "This cmdlet applies to application backup policies for Veeam Plug-In for SAP on Oracle. This cmdlet modifies SAP on Oracle database processing settings." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrsaponoracleprocessingoptions.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 SAP on Oracle > Set-VBRSAPOnOracleProcessingOptions" dateModified: "2026-08-19" --- # Set-VBRSAPOnOracleProcessingOptions ## Short Description Modifies the SAP on Oracle database processing settings for application backup policies. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRSAPOnOracleProcessingOptions -Options [-Credentials ] [-DeleteArchiveRedoLogs] [-ArchiveLogBackupPeriod ] [] ``` ## Detailed Description This cmdlet applies to application backup policies for Veeam Plug-In for SAP on Oracle. This cmdlet modifies SAP on Oracle database processing settings. You can set up the following options: - The way Veeam Backup & Replication will process archived logs. - Schedule settings for archived logs processing. ::: 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

ArchiveLogBackupPeriod

Specifies the integer defining the frequency for archived logs backup in minutes.

Permitted values: 5 to 480.

Int32

False

Named

False

Credentials

Specifies the credentials for SAP on Oracle database processing.

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

CCredentials

False

Named

False

DeleteArchiveRedoLogs

Defines that Veeam Plug-in should delete archived logs that were backed up.

SwitchParameter

False

Named

False

Options

Specifies the database processing options that you plan to modify.

Accepts the VBRSAPOnOracleProcessingOptions object. To get this object, run the New-VBRSAPOnOracleProcessingOptions cmdlet.

VBRSAPOnOracleProcessingOptions

True

Named

True (ByValue)

`` 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 `VBRSAPOnOracleProcessingOptions` object that defines SAP on Oracle database processing settings. ## Examples ::: example ### Creating and Modifying SAP on Oracle Database Processing Settings for Application Backup Policies for Veeam Plug-In for SAP on Oracle This example shows how to create and modify a SAP on Oracle backup settings for application backup policies for Veeam Plug-In for SAP on Oracle. The modified policy will back up archived logs every 30 minutes. ``` $db_administrator = Get-VBRCredentials $processoptions = New-VBRSAPOnOracleProcessingOptions -Credentials $db_administrator -DeleteSourceLogs -ArchiveLogBackupPeriod 15 -ParallelChannelsCount 1 Set-VBRSAPOnOracleProcessingOptions -Options $processoptions -Credentials $db_administrator -DeleteSourceLogs -ArchiveLogBackupPeriod 30 ``` Perform the following steps: 1. Run the [`Get-VBRCredentials`](get-vbrcredentials.md) cmdlet. Save the result to the `$db_administrator` variable. 2. Run the [`New-VBRSAPOnOracleProcessingOptions`](new-vbrsaponoracleprocessingoptions.md) cmdlet. Specify the `Credentials`, `DeleteSourceLogs`, `ArchiveLogBackupPeriod` and `ParallelChannelsCount` parameter values. Save the result to the `$processoptions` variable. 3. Run the `Set-VBRSAPOnOracleProcessingOptions` cmdlet. Specify the following settings: - Set the `$processoptions` variable as the `Options` parameter value. - Set the `$db_administrator` variable as the `Credentials` parameter value. - Provide the `DeleteSourceLogs` parameter. - Specify the `ArchiveLogBackupPeriod` parameter value. ::: ## Related Commands - [`Get-VBRCredentials`](get-vbrcredentials.md) - [`New-VBRSAPOnOracleProcessingOptions`](new-vbrsaponoracleprocessingoptions.md)