SAP Home Learn Build Integrate Model Operate Extend with AI ConnectTutorial navigator Knowledge Graph API Devtoberfest Developer Advocates App Space

Manage my Account SAP Devs YouTube ↗ Learnings ↗ Community ↗ Provide Feedback ↗
Logout
⤢ Open full site

Export and Import Data with SAP HANA Cloud Data Lake Files

Use SAP HANA Cloud data lake Files as a storage target for exporting and importing data from both an SAP HANA Cloud, SAP HANA database and an SAP HANA Cloud, data lake Relational Engine database.

Overview

🎓 beginner 15 min. SAP HANA CloudBeginnerSAP HANA Cloud SAP HANA DatabaseSAP HANA Cloud Data Lake

You will learn

  • How to perform an local export and import of data using CSV files
  • How to configure a database credential for the data lake Files container
  • How to export and import data and catalog objects between an SAP HANA Cloud, SAP HANA database and data lake Files
  • How to export and import data between an SAP HANA Cloud, data lake Relational Engine database and data lake Files
Michelle Wang M Michelle Wang August 13, 2026
Created by August 12, 2026
Contributors

Prerequisites

Prerequisites

  • A productive SAP HANA Cloud instance with a data lake (data lake Files is not available in the free tier service plan)

Steps

Intro

This tutorial demonstrates how data can be exported and imported using the import and export application in SAP HANA Cloud Central or through SQL statements. It focuses on using SAP HANA Cloud data lake Files as a storage target for export and import operations. Data lake Files provides a managed file store that is accessible from both the SAP HANA database and the data lake Relational Engine, making it a convenient intermediate storage layer for data movement between the two.

For a broader overview of all export and import options available, including local CSV downloads, GCS, Azure, and AWS S3, see the Export and Import Data and Schema with SAP HANA Database Explorer tutorial.


Step 1 Export and import data

The following steps demonstrate how to export and import data from the MAINTENANCE table using the SQL console download option and the import data wizard in SAP HANA Cloud Central. For use with larger amounts of data, it is recommended to use a cloud storage provider such as SAP HANA Cloud data lake Files which is shown in the next step.

  1. Enter the SQL statement below in the SQL console.

    SQL
    SELECT * FROM HOTELS.MAINTENANCE;

    Click on the download toolbar item and choose Download.

    Download
    Download

    There is a setting that controls the number of results displayed which may need to be adjusted for tables with larger results.

    Max Rows
    Max Rows

  2. Enter the SQL statement below to delete the rows in the table. They will be added back in the next step.

    SQL
    DELETE FROM HOTELS.MAINTENANCE;
  3. Navigate to the Import and Export app and choose Import Data.

  4. In Target Instance, select your SAP HANA database instance.

  5. In Source Data, select Local Computer and browse to the previously downloaded CSV file.

    Local Import
    Local Import

  6. In Target Table, select Use Existing Table, choose the HOTELS schema, and select the MAINTENANCE table. Complete the remaining steps of the wizard and click Import.

    After completing the wizard, the contents of the MAINTENANCE table should be the same as before the delete statement was executed. Run the following SQL statement to confirm.

    SQL
    SELECT * FROM HOTELS.MAINTENANCE;

    Maintenance Table
    Maintenance Table

Step 2 Export and import data from an SAP HANA Cloud, SAP HANA database (optional)
+
Step 3 Export and import data from an SAP HANA Cloud, data lake Relational Engine database (optional)
+
Step 4 Export and import schema or catalog objects (optional)
+
Step 5 Knowledge check
+

Resources

Discussion

Share feedback on this tutorial or join the conversation in SAP Community.

Submit detailed feedback Discuss in Community
Steps
Step 1 of 5
1. Export and import data 2. Export and import data from an SAP HANA Cloud, SAP HANA database (optional) 3. Export and import data from an SAP HANA Cloud, data lake Relational Engine database (optional) 4. Export and import schema or catalog objects (optional) 5. Knowledge check

Learn more →