- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Create User SQL in SAP HANA database
You can achieve this by running the below SQL query −
>CREATE USER TEST password “Welcome1$$” VALID FROM ‘2017-12-05 11:00:00’ UNTIL ‘2018-12-08 12:00:00’; CREATE USER DUMMY password “Welcome1$$” VALID FROM NOW UNTIL FOREVER;
Note that password passed in this SQL should meet password policy of SAP HANA system otherwise user creation will be failed.
- Related Articles
- Create View SQL in SAP HANA database
- SQL statement to create a Restricted user in SAP HANA
- Create table SQL query in SAP HANA
- Creating a Standard user in SAP HANA system using SQL
- Can we create multiple database in SAP HANA system?
- SAP HANA database functions in HANA Cockpit
- Difference between Open SQL, Native SQL in SAP HANA
- Sort data in SQL using Dynamic SQL in SAP HANA
- Set Database From Single User Mode to Multi User in SQL?
- Understanding a database view in SAP HANA database
- Finding a database view in SAP HANA database
- Using database view in SAP HANA
- Unloading tables in SAP HANA database
- Database objects in SAP HANA Studio
- Defining user lock settings in SAP HANA

Advertisements