I am using Windows Azure with clearDB. Current database auto-increment value is 10. I want it as 1.
I tried to run these commands in PHPMyAdmin with,
1)
set global auto_increment_increment = 1;
set global auto_increment_offset = 1;
ERROR: #1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation
2)
set auto_increment_increment = 1;
set auto_increment_offset = 1;
After that I checked it by this command,
SHOW VARIABLES LIKE 'auto_inc%';
RESULT:
Variable_name Value
auto_increment_increment 10
auto_increment_offset 1
What could be the reason?