Raymond Raymond

Teradata SQL: Rights Held by Database

event 2021-01-19 visibility 196 comment 0 insights toc
more_vert
insights Stats

Teradata Administrator tool used to have a function to show rights held by a database.

You can also directly use SQL to query that instead of relying on the GUI tool.

Rights held by a database

select * from dbc.allrights
where UserName='TestDb';

The above code snippet returns all the access rights held by database container TestDb

Rights held by a user

For Teradata, a user is also a database. Thus you can use same SQL to query rights held by a database user:

select * from dbc.allrights
where UserName='DBC';


More from Kontext
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts