🔒 Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901 aws-aif-c01
Guided AZ-120 Domain 4
Domain 4 — Module 2 of 7 29%
23 of 28 overall

AZ-120 Study Guide

Domain 1: Migrate SAP Workloads to Azure

  • SAP on Azure: The Big Picture Free
  • Assessing SAP Workloads for Migration Free
  • Migration Strategies: The Decision Framework Free
  • RISE with SAP on Azure Free
  • Migration Execution: DMO, Classical, and Beyond Free
  • HANA System Replication for Migration Free
  • Post-Migration: Validation, Health, and HLI Migration Free

Domain 2: Design and Implement an Infrastructure to Support SAP Workloads

  • SAP-Certified Virtual Machines on Azure
  • Storage Architecture for SAP on Azure
  • Networking for SAP on Azure
  • HANA Architecture on Azure
  • SAP Application Tier on Azure
  • Proximity Placement and Availability Options
  • Azure Center for SAP Solutions (ACSS)
  • SAP Deployment Automation Framework (SDAF)

Domain 3: Design and Implement High Availability and Disaster Recovery

  • High Availability Concepts for SAP
  • High Availability for ASCS/SCS
  • HANA System Replication for HA
  • Shared Storage and Load Balancer Deep Dive
  • Disaster Recovery Strategy for SAP
  • Disaster Recovery Implementation

Domain 4: Maintain SAP Workloads on Azure

  • Azure Monitor for SAP Solutions
  • Backup for SAP HANA
  • Backup for SAP Application Servers
  • Security and Encryption for SAP
  • Microsoft Sentinel for SAP
  • Cost Optimization for SAP on Azure
  • SAP Operations and Lifecycle Management

AZ-120 Study Guide

Domain 1: Migrate SAP Workloads to Azure

  • SAP on Azure: The Big Picture Free
  • Assessing SAP Workloads for Migration Free
  • Migration Strategies: The Decision Framework Free
  • RISE with SAP on Azure Free
  • Migration Execution: DMO, Classical, and Beyond Free
  • HANA System Replication for Migration Free
  • Post-Migration: Validation, Health, and HLI Migration Free

Domain 2: Design and Implement an Infrastructure to Support SAP Workloads

  • SAP-Certified Virtual Machines on Azure
  • Storage Architecture for SAP on Azure
  • Networking for SAP on Azure
  • HANA Architecture on Azure
  • SAP Application Tier on Azure
  • Proximity Placement and Availability Options
  • Azure Center for SAP Solutions (ACSS)
  • SAP Deployment Automation Framework (SDAF)

Domain 3: Design and Implement High Availability and Disaster Recovery

  • High Availability Concepts for SAP
  • High Availability for ASCS/SCS
  • HANA System Replication for HA
  • Shared Storage and Load Balancer Deep Dive
  • Disaster Recovery Strategy for SAP
  • Disaster Recovery Implementation

Domain 4: Maintain SAP Workloads on Azure

  • Azure Monitor for SAP Solutions
  • Backup for SAP HANA
  • Backup for SAP Application Servers
  • Security and Encryption for SAP
  • Microsoft Sentinel for SAP
  • Cost Optimization for SAP on Azure
  • SAP Operations and Lifecycle Management
Domain 4: Maintain SAP Workloads on Azure Premium ⏱ ~12 min read

Backup for SAP HANA

Configure Azure Backup for SAP HANA using Backint streaming, compare backup types (full, differential, incremental, log), design backup policies with geo-redundant vaults, and implement restore scenarios including PITR and cross-region restore.

Protecting HANA data

🔧 Aisha opens the backup console. “Monitoring tells us when something goes wrong. Backup is our insurance policy for when things go very wrong — data corruption, accidental deletion, ransomware. At TradeCorp, Carlos wants daily backups with the ability to restore to any point in the last 30 days.”

Carlos nods. “Our auditors require proof that we can recover data. Not just that we take backups, but that we can actually restore them.”

☕ Simple explanation

Think of HANA backup like saving your progress in a video game.

A full backup is a complete save file — everything captured at that moment. A differential backup saves only what changed since the last full save (smaller, faster). An incremental backup saves only what changed since the last backup of any kind (smallest, fastest). Log backups capture every single action as it happens — so you can replay from a save file to any exact moment. Together, they let you “rewind” to any point in time.

Azure Backup for SAP HANA uses the Backint interface — a SAP-certified API that streams backup data directly from HANA to an Azure Recovery Services vault without staging on local disk. This is application-consistent backup that understands HANA’s data structures. Backup types include full (complete database copy), differential (changes since last full), incremental (changes since last backup), and log (continuous transaction log capture). Combined, they enable Point-In-Time Recovery (PITR) to any second within the retention window.

Backup types for HANA

HANA backup types
TypeWhat it capturesSizeFrequencyRestore speed
FullComplete database copyLargestWeekly (typically Sunday)Fastest (single restore)
DifferentialChanges since last full backupMediumDailyModerate (full + differential)
IncrementalChanges since last backup of any typeSmallestDaily or more frequentSlower (full + chain of incrementals)
LogTransaction log entriesContinuous streamEvery 15 minutes (configurable)Used for PITR — replay to exact second

Azure Backup with Backint

Backint is the SAP-certified backup interface. Azure Backup implements Backint so HANA streams backup data directly to the Recovery Services vault:

  • No local staging disk needed — data flows directly from HANA to the vault
  • Application-consistent — HANA ensures data integrity during backup
  • Supports all backup types (full, differential, incremental, log)
  • Managed from the Azure portal or HANA Studio/cockpit
  • Pre-registration script configures the HANA system for Azure Backup integration

HANA native backup to Azure Storage

Alternatively, HANA can write native file-based backups to a mounted filesystem that stores data on ANF volumes or Azure Blob-backed NFS:

  • HANA writes backup files to a mounted NFS file system (HANA does not write directly to Azure Blob Storage — it writes to a POSIX filesystem)
  • The mounted file system can be backed by ANF volumes or NFS-enabled Azure Blob containers
  • More manual management than Backint (retention, cleanup)
  • Useful for specific scenarios like very large databases where Backint streaming is slow
💡 Exam tip: Backint is the Azure-integrated answer

When the exam asks about HANA backup on Azure, the preferred answer is Azure Backup with Backint. It is the fully integrated, SAP-certified approach with centralized management, policy-based retention, and geo-redundant storage. File-based backup to Azure Storage is valid but requires more manual management. If the question mentions “integrated backup management” or “centralized policy,” Backint is the answer.

Backup policies

A well-designed HANA backup policy includes:

  • Full backup: Weekly (e.g., Sunday at 2 AM)
  • Differential or incremental: Daily (e.g., daily at 2 AM, except Sunday)
  • Log backup: Every 15 minutes (HANA default, configurable down to 15 minutes)
  • Retention: 30 days for daily, 12 weeks for weekly, 12 months for monthly, 10 years for annual (adjust per compliance)

Geo-redundant vaults

Recovery Services vaults can be configured for redundancy:

  • LRS (Locally Redundant) — 3 copies within a single datacenter. Cheapest.
  • ZRS (Zone Redundant) — copies across availability zones. Better protection.
  • GRS (Geo-Redundant) — copies to the paired region. Required for DR backup strategy.
  • RA-GRS — GRS with read access from the secondary region. Enables cross-region restore.

For SAP, GRS is recommended for production systems to enable backup-based DR.

Restore scenarios

🔧 Aisha runs through the restore options. “Azure Backup gives us four ways to restore HANA:”

Point-In-Time Recovery (PITR): Restore to any specific second within the retention window. Uses the most recent full + differential/incremental + log replay to the target time. Most common for data corruption or accidental deletion.

Restore to a specific backup: Restore a specific full or differential backup without log replay. Faster but less precise than PITR.

Alternate location restore: Restore to a different HANA instance (different VM, different SID). Useful for creating test copies or migrating data.

Cross-region restore: Restore from a GRS vault in the paired region. Used during regional DR when the primary region is unavailable.

ANF snapshot-based backup

For HANA on ANF storage, application-consistent snapshots provide near-instant backup:

  • ANF snapshots are taken at the volume level
  • HANA is briefly frozen (quiesced) during the snapshot for consistency
  • Snapshots are space-efficient (copy-on-write)
  • Restore from snapshot is near-instant (no data streaming)
  • ANF cross-region replication can copy snapshots to the DR region
Snapshots complement Backint

ANF snapshots provide fast backup and restore for operational recovery (accidental deletion, quick rollback). Backint provides long-term retention with policy management and cross-region protection. A comprehensive HANA backup strategy often uses both: ANF snapshots for fast operational recovery and Backint for compliance-driven long-term retention.

Question

What is Backint and how does Azure Backup use it?

Click or press Enter to reveal answer

Answer

Backint is a SAP-certified backup interface that allows backup tools to stream data directly from HANA. Azure Backup implements Backint so HANA backup data flows directly to an Azure Recovery Services vault without local disk staging. It supports full, differential, incremental, and log backups with centralized policy management.

Click to flip back

Question

What is Point-In-Time Recovery (PITR) for HANA?

Click or press Enter to reveal answer

Answer

PITR restores a HANA database to any specific second within the retention window. It uses the most recent full backup, applies differential/incremental changes, then replays transaction logs to the exact target time. This is the most common restore scenario for data corruption or accidental deletion.

Click to flip back

Question

What vault redundancy option enables cross-region restore for DR?

Click or press Enter to reveal answer

Answer

GRS (Geo-Redundant Storage) or RA-GRS (Read-Access Geo-Redundant Storage). GRS replicates backup data to the Azure paired region. RA-GRS adds read access from the secondary region, enabling cross-region restore even when the primary region is unavailable.

Click to flip back

Question

How do ANF snapshots complement Backint for HANA backup?

Click or press Enter to reveal answer

Answer

ANF snapshots provide near-instant backup and restore for operational recovery (fast rollback). Backint provides long-term policy-managed retention with cross-region protection. Use both: ANF snapshots for quick operational recovery and Backint for compliance-driven long-term retention.

Click to flip back

Question

What are the four HANA backup types and when is each used?

Click or press Enter to reveal answer

Answer

Full — complete database copy (weekly). Differential — changes since last full (daily). Incremental — changes since last backup of any type (daily/frequent). Log — continuous transaction log capture (every 15 minutes). Full + differential/incremental + log replay enables Point-In-Time Recovery.

Click to flip back

Knowledge check

Knowledge Check

Carlos asks Aisha to configure HANA backup with centralized policy management and SAP certification. What should she use?

Knowledge Check

TradeCorp discovers data corruption at 3:00 PM. The last full backup was Sunday, with daily differentials and 15-minute log backups. What restore approach recovers to 2:59 PM?

Knowledge Check

TradeCorp's primary Azure region is unavailable during a disaster. How can Aisha restore HANA from backup in the DR region?

Summary

You now know how to back up SAP HANA: Backint for integrated streaming backup, four backup types for layered protection, PITR for precise recovery, GRS vaults for cross-region restore, and ANF snapshots for fast operational recovery. Backup is not complete until you verify restore works — test regularly.

Next, we cover backup for the application tier — VM-level backup, transport directories, and ASCS shared storage.

🎬 Video coming soon

← Previous

Azure Monitor for SAP Solutions

Next →

Backup for SAP Application Servers

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.