Specifies the type of table storage FedSQL will use when creating tables in SAP HANA.
Valid in: | CREATE TABLE statement |
Category: | Data Access |
Interactions: | GLOBAL and GLOBAL TEMPORARY have the same behavior |
LOCAL and LOCAL TEMPORARY have the same behavior | |
Data source: | SAP HANA |
creates a table using column-based storage in SAP HANA.
creates a global, temporary table in SAP HANA. The tables are globally available; however, the data is visible only in the current session.
creates a local, temporary table in SAP HANA. The table definition and data are visible only in the current session.
creates a table using row-based storage in SAP HANA.