Set-VBRSAPOnOracleProcessingOptions

Short Description

Modifies the SAP on Oracle database processing settings for application backup policies.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Set-VBROracleRMANProcessingOptions -Options -Credentials <CCredentials> [-DeleteSourceLogs] [-ArchiveLogBackupPeriod <int>] [<CommonParameters>]

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 parameters values with new values. The parameters that you omit will remain unchanged.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Options

Specifies the database processing options that you plan to modify.

Accepts the VBRSAPOnOracleProcessingOptions object.

True

Named

True (ByValue)

Credentials

Specifies the credentials for SAP on Oracle database processing.

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

True

Named

False

DeleteSourceLogs

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

SwitchParameter

False

Named

False

ArchiveLogBackupPeriod

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

Permitted values: 5 to 480.

Int32

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBRSAPOnOracleProcessingOptions object that defines SAP on Oracle database processing settings.

Example

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.

To create and modify the SAP on Oracle database processing settings, perform the following steps:

  1. Run Get-VBRCredentials to get the credentials for the Oracle database system. Save the result to the $db_administrator variable.
  2. Run New-VBRSAPOnOracleProcessingOptions to specify the database processing settings. Save the result to the $processoptions variable.
  3. Run Set-VBRSAPOnOracleProcessingOptions with the $db_administrator and $processoptions variables. Use the ArchiveLogBackupPeriod parameter to specify log backup schedule.

$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