Informix account with read only access!!
Informix account with read only access!!
(OP)
Hello,
Please could you help with this..would like to create an Informix account with read only access at the database level. Also set no access for the HR tables along with read only access to the other tables.
Thanks in advance.
Adnan
Please could you help with this..would like to create an Informix account with read only access at the database level. Also set no access for the HR tables along with read only access to the other tables.
Thanks in advance.
Adnan
RE: Informix account with read only access!!
Hope This Helps, PH.
FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions?
FAQ181-2886: How can I maximize my chances of getting an answer?
RE: Informix account with read only access!!
I get to know that i have to use the 'grant' command to provide the required access to new user. Please could you suggest, what command or syntax to use to provide read only access to Informix database or tables.
RE: Informix account with read only access!!
REVOKE ALL ON tablename1 FROM newuser;
GRANT SELECT ON tablename1 TO newuser;
REVOKE ALL ON tablename2 FROM newuser;
GRANT SELECT ON tablename2 TO newuser;
...
Hope This Helps, PH.
FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions?
FAQ181-2886: How can I maximize my chances of getting an answer?
RE: Informix account with read only access!!
Thanks again.