mysql添加表中字段的问题!!
我想在表中添加个字段,提示
#1036 - Table 'mytable' is read only
请问怎么解决?
(我在同一数据库其他表中添加字段正常)
mysql安装在linux下
问题点数:50、回复次数:2Top
1 楼hy2003fly()回复于 2006-03-16 18:57:18 得分 30
你的mytable表被设为只读,所以不能写入数据,解锁就可以了.unlock tables
你试试看.Top
2 楼XqYuan()回复于 2006-03-16 20:47:59 得分 20
The problem is that u have copied the database files while the MySql server was running, the solution is to delete the database and turn off the server, copy the files ,change the ownership and then turn the sever on again
搜到的,不知道是不是这个问题,没有遇到过Top




