ALTER USER
Function
ALTER USER modifies the attributes of a database user.
Precautions
Session parameters modified by ALTER USER apply to a specified user and take effect in the next session.
Syntax
- Modify user rights or other information.
1
ALTER USER user_name [ [ WITH ] option [ ... ] ];
The option clause is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
{ CREATEDB | NOCREATEDB } | { CREATEROLE | NOCREATEROLE } | { INHERIT | NOINHERIT } | { AUDITADMIN | NOAUDITADMIN } | { SYSADMIN | NOSYSADMIN } | { USEFT | NOUSEFT } | { LOGIN | NOLOGIN } | { REPLICATION | NOREPLICATION } | {INDEPENDENT | NOINDEPENDENT} | {VCADMIN | NOVCADMIN} | CONNECTION LIMIT connlimit | [ ENCRYPTED | UNENCRYPTED ] PASSWORD { 'password' | DISABLE } | [ ENCRYPTED | UNENCRYPTED ] IDENTIFIED BY { 'password' [ REPLACE 'old_password' ] | DISABLE } | VALID BEGIN 'timestamp' | VALID UNTIL 'timestamp' | RESOURCE POOL 'respool' | USER GROUP 'groupuser' | PERM SPACE 'spacelimit' | TEMP SPACE 'tmpspacelimit' | SPILL SPACE 'spillspacelimit' | NODE GROUP logic_cluster_name | ACCOUNT { LOCK | UNLOCK } | PGUSER | LDAP
- Change the user name.
1 2
ALTER USER user_name RENAME TO new_name;
- Change the value of a specified parameter associated with the user.
1 2
ALTER USER user_name SET configuration_parameter { { TO | = } { value | DEFAULT } | FROM CURRENT };
- Reset the value of a specified parameter associated with the user.
1 2
ALTER USER user_name RESET { configuration_parameter | ALL };
Parameter description
- user_name
Specifies the current user name.
Value range: an existing user name
- new_password
Indicates a new password.
A new password must:
- Differ from the old password.
- Contain at least eight characters. This is the default length.
- Differ from the user name or the user name spelled backward.
- Contain at least three of the following four character types: uppercase letters, lowercase letters, digits, and special characters, including: ~!@#$%^&*()-_=+\|[{}];:,<.>/?. If you use characters other than the four types, a warning is displayed, but you can still create the password.
Value range: a string.
- old_password
Indicates the old password.
- ACCOUNT LOCK | ACCOUNT UNLOCK
- ACCOUNT LOCK: locks an account to forbid login to databases.
- ACCOUNT UNLOCK: unlocks an account to allow login to databases.
- PGUSER
PGUSER of a user cannot be modified in the current version.
For details about other parameters, see "Parameter Description" in CREATE ROLE and ALTER ROLE.
Examples
See Examples in CREATE USER.
Helpful Links
Last Article: ALTER TYPE
Next Article: ALTER VIEW
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.