Advertisement
Joshb_

Untitled

Nov 4th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. INSERT INTO mysql.user
  2. SET user = 'root',
  3. host = 'localhost',
  4. password = Password('whatevernewpassword'),
  5. Select_priv = 'y',
  6. Insert_priv = 'y',
  7. Update_priv = 'y',
  8. Delete_priv = 'y',
  9. Create_priv = 'y',
  10. Drop_priv = 'y',
  11. Reload_priv = 'y',
  12. Shutdown_priv = 'y',
  13. Process_priv = 'y',
  14. File_priv = 'y',
  15. Grant_priv = 'y',
  16. References_priv = 'y',
  17. Index_priv = 'y',
  18. Alter_priv = 'y',
  19. Show_db_priv = 'y',
  20. Super_priv = 'y',
  21. Create_tmp_table_priv = 'y',
  22. Lock_tables_priv = 'y',
  23. Execute_priv = 'y',
  24. Repl_slave_priv = 'y',
  25. Repl_client_priv = 'y',
  26. Create_view_priv = 'y',
  27. Show_view_priv = 'y',
  28. Create_routine_priv = 'y',
  29. Alter_routine_priv = 'y',
  30. Create_user_priv = 'y',
  31. Event_priv = 'y',
  32. Trigger_priv = 'y',
  33. Create_tablespace_priv = 'y';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement