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

Selectively Move Data Between In-Memory and Extended Tables

Move data between in-memory and extended tables. Set connection property values.

Overview

🎓 beginner 15 min. SAP HANA Dynamic TieringBeginnerSAP HANASAP HANA StudioBig DataSql

You will learn

  • โœ”Migrating data between in-memory and Dynamic Tiering table instances.
  • โœ”Setting “Auto Commit” and “Isolation Level” property values.
Unknown U Unknown November 1, 2022
Created by February 13, 2017
Contributors

Prerequisites

Prerequisites

Steps

Next Steps

Time to Complete

10 Min.


Step 1 Delete Data From Extended Tables
โ€”

Currently the LINEITEM_DT table contains identical information to the LINEITEM_CS table. In order to easily be able to notice that data has been selectively moved from one table to another, we will first remove all data from the LINEITEM_DT table. To do so, copy and paste the script below into the SQL console. Then press the Execute button to delete the data in the table.

In SAP HANA Administration Console perspective, go to the System view on the left side. Select your system and open a SQL console.

Open SQL Console
Open SQL Console

SQL
TRUNCATE TABLE "TPCH"."LINEITEM_DT";

SELECT * FROM "TPCH"."LINEITEM_DT";

Delete Data
Delete Data

The result should be empty to indicate the data has been deleted.

Empty Result
Empty Result

Step 2 Turning off Auto Commit
+
Step 3 Setting the Isolation Level
+
Step 4 Migrating Data
+

Resources

Discussion

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

Submit detailed feedback Discuss in Community
Steps
Step 1 of 4
1. Delete Data From Extended Tables 2. Turning off Auto Commit 3. Setting the Isolation Level 4. Migrating Data

Learn more →