Table of Contents

Sap Hana - Row tables

Load status

Standard row tables are loaded into memory when the database is started and remain there as long as it is running.

Partitioning

Partitioning is available only for column tables.

Sizing

select round(sum(USED_FIXED_PART_SIZE + USED_VARIABLE_PART_SIZE)/1024/1024) as "Row Tables MB Used" from M_RS_TABLES
select SCHEMA_NAME, TABLE_NAME, round((USED_FIXED_PART_SIZE + USED_VARIABLE_PART_SIZE)/1024/1024, 2) as "MB Used" from M_RS_TABLES where SCHEMA_NAME = 'SYS' order by "MB Used" desc, TABLE_NAME

Data Dictionary

RS for ROW Store !