I need to change the ISOLATION LEVEL from REPEATABLE-READ to READ-COMMITTED. I try doing the following:
SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED;
But I get the following error:
ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege (s) for this operation
How can I make the change?