Each row of SYSUSERAUTHORITY system view describes an authority granted to one user ID. The underlying system table for this view is ISYSUSERAUTHORITY.
Column name | Column type | Column constraint |
---|---|---|
user_id | UNSIGNED INT | NOT NULL |
auth | VARCHAR(20) | NOT NULL |
user_id The ID of the user to whom the authority belongs.
auth The authority granted to the user.
PRIMARY KEY (user_id, auth)
FOREIGN KEY (user_id) references SYS.ISYSUSER (user_id)