I have a dev MySQL server, on which there are many databases, and most of them change constantly...
I need to grant full access to all databases to a particular user, and only read access to 2 of those databases (these are replicated from another server).
I don't want to explicitly grant full privileges on every database, as the list changes constantly, and it will be a pain to maintain.
I tried grant all, and then grant only usage on the database, but grant all on everything takes precedence.
Is there a good way of accomplishing the goal here?