How can I edit user privileges of some MySQL servers with JetBrains DataGrip?
Asked
Active
Viewed 1.6k times
2 Answers
16
As far as I can tell, the state of the art is that you either
- write+run hand-written SQL statements for user management (see MySQL docs at [1] )
- run DataGrip in the background while running MySQL Workbench or phpMyAdmin in the foreground and do the user management there
Let's hope that the situation improves, but right now there does not even seem to be a feature request for that.
[1] https://dev.mysql.com/doc/refman/5.7/en/user-account-management.html

mnagel
- 6,729
- 4
- 31
- 66
-
2There is now a feature request, but it has not seen a lot of activity: https://youtrack.jetbrains.com/issue/DBE-3599 – Quentin Skousen Sep 18 '18 at 22:08