摘要:
遇到了 SQLException: access denied for @'localhost' (using password: no)解决办法grant all privileges on *.* tojoe@localhostidentified by '1'; flush privilege... 阅读全文
摘要:
mysql的查询结果写入到某个文件,有两种方法1)pager cat > /the/file/rootselect * from dbname.table2)select * from dbname.table into outfile '/the/file/root'使用第二种方法时,报如下... 阅读全文
摘要:
今天碰到数据库出错Got error 28 from storage engine查了一下,数据库文件所在的盘应该没事,应该是数据库用的临时目录空间不够引用磁盘临时空间不够导致。解决办法:清空/tmp目录,或者修改my.cnf中的tmpdir参数,指向具有足够空间目录上面的说法应该比较清楚,还有一个... 阅读全文