Set-VBRSAPHANAProcessingOptions

Short Description

Modifies the SAP HANA database processing settings for application backup policies.

Applies to

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

Syntax

New-VBRSAPHANAProcessingOptions -Options <VBRSAPHANAProcessingOptions> [-ArchiveLogBackupPeriod <int>] [-LogBackupMode {VeeamManaged | SAPHANAManaged}] [<CommonParameters>]

Detailed Description

This cmdlet applies to application backup policies for Veeam Plug-in for SAP HANA.

This cmdlet modifies SAP HANA database processing settings. You can modify 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 VBRSAPHANAProcessingOptions type.

True

Named

True (ByValue)

ArchiveLogBackupPeriod

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

Permitted values: 5 to 480.

Int32

False

Named

False

LogBackupMode

Specifies the way of database processing:

  • VeeamManaged: use this option if you want to perform database processing with Data Mover by Veeam Software.
  • SAPHANAManaged: use this option if you want to perform database processing with SAP HANA.

Accepts the VBRSAPHANALogBackupMode object.

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 VBRSAPHANAProcessingOptions object that defines SAP HANA database processing settings.

Example

This example shows how to create an SAP HANA database processing settings for application backup policies for Veeam Plug-in for SAP HANA. The modified policy will back up archived logs every 30 minutes.

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

  1. Run New-VBRSAPHANAProcessingOptions to specify the database processing settings. Save the result to the $processoptions variable.
  2. Run Set-VBRSAPHANAProcessingOptions with the $processoptions variable. Use the ArchiveLogBackupPeriod parameter to specify log back up frequency.

$processoptions = New-VBRSAPHANAProcessingOptions -ArchiveLogBackupPeriod 15 -ArchivedLogAction SAPHANAManaged

Set-VBRSAPHANAProcessingOptions -Options $processoptions -ArchiveLogBackupPeriod 30