Good day,
I copied a table from a server onto my test server, and wish to alter it somewhat. I attempted to ADD COLUMN via the ALTER TABLE command, and got an error:
ERROR 1036: Table 'TABLE' is read only.
So I ensured all privileges, by executing the GRANT command:
GRANT ALL PRIVILEGES ON *.* to root@localhost
IDENTIFIED BY 'pword'; which executed fine.
I then tried to ALTER TABLE again, but am still getting the above error. Any ideas folks?
Thanks for your time
Cheers!
Laura
I copied a table from a server onto my test server, and wish to alter it somewhat. I attempted to ADD COLUMN via the ALTER TABLE command, and got an error:
ERROR 1036: Table 'TABLE' is read only.
So I ensured all privileges, by executing the GRANT command:
GRANT ALL PRIVILEGES ON *.* to root@localhost
IDENTIFIED BY 'pword'; which executed fine.
I then tried to ALTER TABLE again, but am still getting the above error. Any ideas folks?
Thanks for your time
Cheers!
Laura