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