4

How do I change my password in SAP HANA via SQL.
(or other users if I am an Administrator)

I did view the HANA Dokumentation : ALTER USER Statement

So I tried ALTER USER <user_name> PASSWORD '<new_password>' with no success.

Thorsten Niehues
  • 13,712
  • 22
  • 78
  • 113

1 Answers1

10

Use double quotes : ALTER USER <user_name> PASSWORD "<new_password>"

(Unfortunately this is not mentioned in the provided Link).

Thorsten Niehues
  • 13,712
  • 22
  • 78
  • 113