I am trying to execute query in mysql.
SET GLOBAL log_bin_trust_function_creators =1;
Error:
SQL query:
SET GLOBAL log_bin_trust_function_creators =1
MySQL said:
#1227 – Access denied; you need the SUPER privilege for this operation
I want to know that how do i assign SUPER privileges to any database
You can add super privilege using
phpmyadmin:If you want to do it through
Console, do like this:After executing above code, end it with:
You should do it with
*.*(all databases) because SUPER is not a privilege which applies just to one database, it’s global.