Updated on 2025-07-22 GMT+08:00

SET ROLE

Function

SET ROLE sets the current user identifier of the current session.

Precautions

  • Users of the current session must be members of specified rolename, but the system administrator can choose any roles.
  • Executing this command may add rights of a user or restrict rights of a user. If the role of a session user has the INHERITS attribute, it automatically has all rights of roles that SET ROLE enables the role to be. In this case, SET ROLE physically deletes all rights directly granted to session users and rights of its belonging roles and only leaves rights of the specified roles. If the role of the session user has the NOINHERITS attribute, SET ROLE deletes rights directly granted to the session user and obtains rights of the specified role.

Syntax

  • Set the current user identifier of the current session.
    1
    SET [ SESSION | LOCAL ] ROLE role_name PASSWORD '{password}';
    
  • Reset the current user identifier to that of the current session.
    1
    RESET ROLE;
    

Parameter Description

Table 1 SET ROLE parameters

Parameter

Description

Value Range

SESSION

Specifies that the command takes effect only for the current session. This parameter is used by default.

A string, which must comply with the naming convention.

LOCALE

Indicates that the specified command takes effect only for the current transaction.

-

role_name

Specifies the role name.

A string, which must comply with the naming convention.

password

Specifies the password of a role. It must comply with the password convention.

-

RESET ROLE

Resets the current user identifier.

-

Examples

Create a role named manager:

1
CREATE ROLE paul IDENTIFIED BY '{Password}';

Set the current user to paul:

1
SET ROLE paul PASSWORD '{password}';

View the current session user and the current user:

1
SELECT SESSION_USER, CURRENT_USER;

Reset the current user:

1
RESET role;