mysql root permission to update information_schema error

前端 未结 2 1087
甜味超标
甜味超标 2021-01-19 04:57

when i try to update one table(GLOBAL_VARIABLES) from information_schema db,

i get an error :

Access denied for user \'root\'@\'localhost\' to databa         


        
2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-19 05:19

    You can change the global variables using SET, and read them using SHOW.

    See http://dev.mysql.com/doc/refman/5.0/en/using-system-variables.html for more info

提交回复
热议问题