我在D盘根目录下建了一个名为personalfile.sql的文件,文件内容如下:
create table personalfile(
id int(8) not null primary key auto_increment,
url text,
item2 text not null,
content text not null
);在mysql5.0中,在已有数据库中引用这个文件:source d:/personalfile.sql;
却提示了这个错误:
ERROR 3 (HY000):Error writing file '.\topscien\personalfile.frm' (Errcode:28)在mysql中直接输入问题依旧,之前新建表都没有问题的请问各位高手这是怎么回事啊?