vote up 0 vote down star

Our software has data to store, so it also install MYSQL, a root user and a user with read only access if a third party compagny wants to install a backup solution for our data. But the third party wants to write data (a timestamp for backup purpose or something like that...) to another database. How can I change the user so it has read only acces to our database and creator/owner rights to other databases.

Second part of my question : we migth switch to POSTGRES later. Does the creator/owner right (or the equivalent solution) exists in POSTGRES as well ?

Am I clear enough ?

flag

I have not found anything that indicates that such a thing exists. I would to close / delete or some other form of withdrawing my question. – Silence Sep 1 at 13:43

2 Answers

vote up 0 vote down check

After a few searches I've found nothing that indicates that such a thing exists.

link|flag
longneck's answer should've put you in the right direction, as it does exist. Specifically, see the syntax for REVOKE and then use GRANT to give them back the minimal access you want them to have. – Joe Sep 3 at 17:32
And it can give them access to specifically databases and tables they create and no write access to already existing tables ? – Silence Sep 4 at 14:22
vote up 0 vote down

you need to read this page from the mysql manual: http://dev.mysql.com/doc/refman/5.0/en/grant.html

this page describes how to grant permissions to existing and new users with the restrictions you have requested.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.