- 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
Can we create multiple database in SAP HANA system?
In SAP HANA, you don’t have a concept of creating multiple databases in one container. To create a separate container for your database objects, you can create the schema in HANA db.
To create a schema, you can use below SQL query −
CREATE SCHEMA schema name
You can also define <user_name> as owner name while defining a schema.
CREATE SCHEMA <schema_name> [OWNED BY <user_name>]
If it is not defined, the system takes the current user as the owner of the schema.
- Related Articles
- Handling system failure, database corruption in SAP HANA
- Create User SQL in SAP HANA database
- Create View SQL in SAP HANA database
- SAP HANA database functions in HANA Cockpit
- Understanding a database view in SAP HANA database
- Finding a database view in SAP HANA database
- Searching a SAP HANA system in HANA Studio System view
- Using database view in SAP HANA
- Unloading tables in SAP HANA database
- Database objects in SAP HANA Studio
- Data Compression in SAP HANA system
- Index server in SAP HANA system
- Checking System limits in SAP HANA
- Current alerts in SAP HANA system
- Default table type in SAP HANA database

Advertisements