You can give users authority to do any of the following with your tables:
For example, to give a user with user ID LINDSAY the authority to view, add, change, and delete the data in the CALENDAR table, run the following query:
GRANT ALL ON TABLE CALENDAR TO LINDSAY
To allow LINDSAY the authority to view the data in the PERS table, run this query:
GRANT SELECT ON TABLE PERS TO LINDSAY
To allow authority to the MYSTAFF table to remote users, run this query:
GRANT ALL ON TABLE MYSTAFF TO PUBLIC AT ALL LOCATIONS
Note to CICS Users |
---|
You can only allow users authority to view data in tables at remote locations. |