Archives of the TeradataForum
Message Posted: Fri, 27 Jun 2008 @ 20:22:41 GMT
Subj: | | Re: To know about the privileges on any table |
|
From: | | fnewbrough |
select *
FROM
DBC.UserRights
Where DatabaseName='username'
This should do the trick. You should also lookinto UserRoleRights if you are assigned any roles. You can check what roles you belong to by
querying dbc.rolemembers.
There are many other useful tables in DBC.
Run this in SQL Assistant:
help database dbc
It will list the tables and provide a description of what they contain.
-Fred
|