If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Originally posted by dbman007
When I run the following command:
ALTER staff ADD status char(1)
mySQL returns the following error:
Error on rename of '.\Common\staff.MYI' to '.\Common\#sql2-6a-2fc3.MYI' (Errcode: 13)
What is the problem?
Thankyou.
Problem is between chair and monitor :-)))
Now seriously. Problem is in the syntax of command.
The right command is following:
alter table staff add column status char(1);
Originally posted by ika
Problem is between chair and monitor :-)))
Now seriously. Problem is in the syntax of command.
The right command is following:
alter table staff add column status char(1);