---
parser: v2
auto_validation: true
primary_tag: products>sap-hana-dynamic-tiering
tags: [  tutorial>beginner, topic>big-data, products>sap-hana, products>sap-hana-dynamic-tiering, products>sap-hana-studio ]
slug: dt-backup-recovery-part6
canonical_url: https://developers.sap.com/tutorials/dt-backup-recovery-part6
---

# Creating and Recovering Delta Backups
<!-- description --> Delta backups are a feature in SAP HANA to optimize recoveries and backups.

## Prerequisites
 - **Proficiency:** Beginner
 - **Tutorials** [Creating Database Backups](https://www.sap.com/) and [Database Recovery With HANA Dynamic Tiering](https://www.sap.com/)

## You will learn
- How delta backups are different than a full backup
- The difference between differential backup and incremental backup
- How to perform a delta backup
- How to perform recoveries with delta backups
## Time to Complete
**15 Min**
---

### Introduction

Delta backups is a feature in SAP HANA to perform backup and recoveries quicker, reducing the need for frequent full backups. Rather than completing a full backup of a system, delta backups enables you to optimize your backup strategy by only capturing the data changed since the last full backup or delta backup - meaning less log backups are read for a recovery. Delta backups can only be created if a full data backup, that is delta backup-enabled, has been performed.

There are **two types** of delta backups:
- **Incremental backups** only captures the data since the last **delta** backup, not the since the full Backups
- **Differential backups** captures the delta data since the last full backup, rather than from the last delta data.

![Delta Backups](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/delta-backup.png)


### Creating Delta Backups


Ensure you have chosen an user that has the authorizations described in the tutorial [Initializing Database Backup and Recovery](https://www.sap.com/) before creating the backup.

To perform a backup, navigate to the the Systems panel in your SAP HANA Administration Console, and right click the System database. For the purposes of this tutorial we will be performing a delta backup on a Tenant database. Recall from previous tutorials, that backups can only be performed through the `SystemDB` with a user with correct authorizations.

Select "Back Up Tenant Database".

![Open Backup Console](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/open-backup-console.png)

You will then be prompted to specify the Tenant database you are backing up.

![Specify Tenant Database](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/specify-tenant-database.png)

After ,You will then be prompted to specify your backup settings, which allows you to choose the the **Backup Type**. There are two different delta backups you can select, but for the purposes of this tutorial, we will be doing a **Differential Data Backup**.

You can also edit information such as the **Backup Destination** and **Backup Prefix**. The default destination will be shown, which you can accept.

![Select Delta Backup](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/selectdeltabackup.png)

Review the backup settings, and select **Finish**.

![Review Backup Settings](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/review-backup-settings.png)

> Note: A delta backup cannot be performed unless a full backup was created prior to this delta backup. If a delta backup is created without a prior full backup, there will be an error.

After the backup is complete, the execution summary will show.

![Execution Summary](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/completed-delta-backups.png)



### Performing Recoveries


Recoveries are performed the same as a normal recovery, as seen in [Database Recovery With HANA Dynamic Tiering](https://www.sap.com/), with the additional step of enabling the delta backup option.

From the SAP HANA Administration Console, right clicking the system in the Systems panel, similar to Step 2, and select "**Backup and Recovery**" > "**Recover Tenant...**".

Once you select this, HANA will prepare the recovery wizard. Once ready, you can specify the recovery type. For the purpose of this lesson, we will recover the database to its most recent state. Select **Next**.

![Recover to Most Recent State](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/most-recent-state.png)

Specify the **Backup Catalog Location** that you wish to use to recover your database. After, select **Next**.
![Backup Catalog Location](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/backup-catalog-location.png)

It will then tell you that the database must be offline before recovery can start. Select **OK**

![Offline Database](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/offline.png)

After the database has been stopped (progress can be viewed in the bottom right), you will be prompted to select the data backup. After you have selected, press **Next**

![Check backup availability](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/check-backup-availability.png)

Select the log backup, and press **Next**.

![Log Backup](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/log-backup.png)

Select **Use Delta Backups** in the **Other Settings** Window.

![Use Delta Backups](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/other-settings-delta.png)

Review the recovery settings, and select **Finish**. Recovery will done be performed.

![Recovery Loading](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/recovery-load.png)

The recovery is now complete.

![Recovery summary](https://raw.githubusercontent.com/sap-tutorials/Tutorials/master/tutorials/dt-backup-recovery-part6/recovery-summary.png)

