Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Load and unload a table in SAP HANA using SQL query

Why do we perform loading and unloading of tables in SAP HANA database? What is the SQL query to perform this function?


1 Answer
SAP Developer

In SAP HANA, it is possible to manually load and unload individual tables and table columns.

  • You can perform loading of table to precisely measure the total or “worst case” amount of memory used by a particular table.
  • A table is unload from database to actively free up memory.

You can use following SQL queries to perform load/unload of table:

LOAD <table_name>
UNLOAD <table_name>

Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.