What is the best method for listing users and getting their associated table permissions for a progress database?
|
|
|
The permissions for the 4GL engine and SQL-92 engines are handled somewhat differently. From the 4GL perspective you want to look at the _User table to find users. I.e.:
To see table permissions you look at the CAN-* fields of tables:
The docs that Tim points to have lots more detail. |
|||
|
|
|
I ended up writing a quick sql query against my odbc for this for auditing purposes.
It also looks like there are a couple of stored procedures (at least in our environment) which may get you what you need:
|
|||
|
|
|
Users are stored in the _user table. You can see more on how Progress does security and identity management by consulting their Identity and Security Docs here: http://communities.progress.com/pcom/docs/DOC-107735 |
|||
|
|
|
This will give you a list of users and the rights they have on each table in the current database:
This report will get big very quickly, depending on the number of users and tables in your database. |
|||
|
|