I'm trying to grant access one user to many db that have been created on my system like this:
dbUser_1 dbUser_2 ...
and so on.
I can use GRANT SELECT, INSERT, UPDATE ON `dbUser\_%`.* TO 'kenny'@'localhost';
To let kenny user to insert, select and update ALLL the table of each db.
I'm looking for make something like this: ATENTION, this don't work:
GRANT SELECT, INSERT, UPDATE ON `dbUser\_%`.*`bill` TO 'kenny'@'localhost';
To let kenny get access to all the bill tables on each db.
¿It is possible?
I'm using mysql. Thanks in advance.