- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Checking all tables and schema in SAP HANA
When you add a HANA system in HANA Studio, you can see different tabs under system pane. Each pane has different object types of HANA system.
To see the list of all schema and tables, you need to navigate to Catalog tab.
Other available tabs in HANA Studio includes:
- Backup
- Catalog
- Provisioning
- Content
- Security
You can check under table type- if a table is row store or column store. On right top corner, it is mentioned.
New tables can be created using the two methods given below −
- Using SQL editor
- Using GUI option
The new table can be created using SQL Create Table statement −
Create column Table Test1 ( ID INTEGER, NAME VARCHAR(10), PRIMARY KEY (ID) );
To know more about schema and tables in SAP HANA, you can refer our link below: https://www.tutorialspoint.com/sap_hana/sap_hana_tables.htm
- Related Articles
- Checking tables in a schema in SAP HANA database
- Checking list of all available schema in SAP HANA
- Checking SAP HANA Schema owner name
- Checking schema creation in SAP HANA database
- Checking authoring schema job details in SAP HANA
- Checking list of system schema in SAP HANA
- Checking a table inside a schema in SAP HANA database
- Checking all alert types in SAP HANA
- Authoring schema vs Physical schema in SAP HANA
- Checking create time for all users in SAP HANA
- Using Schema mapping in SAP HANA
- Setting schema mapping in SAP HANA
- Difference between _SYS_BIC and _SYS_BI schema in SAP HANA
- Taking backup of schema in SAP HANA
- Taking schema wise backup in SAP HANA

Advertisements