Set-VBROracleProcessingOptions
Short Description
Modifies settings for processing Oracle database archived logs.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Set-VBROracleProcessingOptions -Options <VBROracleProcessingOptions> [-Credentials <CCredentials>] [-ArchivedLogAction <VBROracleArchivedLogAction> {NotDelete | DeleteByTime | DeleteBySize}][-ArchiveLogDeletionPeriod <int>] [-ArchiveLogDeletionSize <int>] [-EnableArchiveLogBackup][-ArchiveLogBackupPeriod <int>] [-ArchiveLogRetainAction <VBRLogRetainAction> {WaitForBackupDeletion |KeepOnlyLastDays}] [-ArchiveLogRetainPeriod <int>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies the Oracle database processing settings for Veeam Agent backup jobs. To modify settings, enter the necessary parameters with new values. The parameters that you omit will remain unchanged.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
Options | Specifies Oracle processing options that you want to modify. Accepts the VBROracleProcessingOptions type. | True | Named | True (ByValue) |
|
Credentials | Specifies the credentials of the account with SYSDBA privileges. Veeam Backup & Replication will use these credentials to connect to the Oracle database. NOTE: this parameter is required for the backup policy that Veeam Agent job applies to Linux computers. Accepts the CCredentials type. | False | Named | False |
|
ArchivedLogAction | Specifies action for Oracle archived logs.
| False | Named | False |
|
ArchiveLogDeletionPeriod | For the DeleteByTime action. Specifies the number of hours for keeping archived logs. | False | Named | False |
|
ArchiveLogDeletionSize | For the DeleteBySize action. Specifies the size limits in GB for the logs to keep them on the server. | False | Named | False |
|
EnableArchiveLogBackup | Indicates that Veeam Backup & Replication will backup Oracle archived logs. NOTE: This parameter does not work for backup policies that Veeam Agent job applies to Linux computers. | False | Named | False |
|
ArchiveLogBackupPeriod | For the EnableArchiveLogBackup parameter. Specifies how often Veeam Backup & Replication will back up archived logs. Default: every 15 minutes. | False | Named | False |
|
ArchiveLogRetainAction | For the EnableArchiveLogBackup parameter. Specifies retention policy for the archived logs backups. Veeam Backup & Replication will apply the policy for archived logs stored in the backup repository.
| False | Named | False |
|
ArchiveLogRetainPeriod | For the EnableArchiveLogBackup parameter. Specifies the number of days to keep backups of the archived logs. | 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.
Return Type
Example
This example shows how to modify Oracle processing settings for a Veeam Agent job that backs up Windows computers. The job will run with the following options:
- Veeam Backup & Replication will trigger the truncation of the logs which are older than 17 hours.
- Veeam Backup & Replication will back up the archived logs every 25 minutes.
- Veeam Backup & Replication will keep the backups of the archived logs the same period as the image-level backups.
To modify Oracle processing settings, perform the following steps:
- Run New-VBROracleProcessingOptions to specify Oracle settings. Save the result to the $oracle variable.
- Run Set-VBROracleProcessingOptions with the $oracle variable.
$oracle = New-VBROracleProcessingOptions -ArchivedLogAction DeleteBySize -ArchiveLogDeletionSize 20 Set-VBROracleProcessingOptions Options $oracle -ArchivedLogAction DeleteByTime -ArchiveLogDeletionPeriod 17 -ArchiveLogBackupPeriod 25 -ArchiveLogRetainAction WaitForBackupDeletion -EnableArchiveLogBackup |
Related Commands