php mysql Errcode: 28 终极解决方法
程序员文章站
2023-12-03 23:57:10
perror 28 error code 28: no space left on device sql语句执行错误:select title,gid from blog_...
perror 28
error code 28: no space left on device
sql语句执行错误:select title,gid from blog_blog where date < 1246200383 and hide = 'n' and type='blog' order by date desc limit 1
error writing file 'c:\windows\temp\my9b6f.tmp' (errcode: 28)
解决方法:
1.释放c:\windows\temp\空间
2.因为原表太大,所以查询时生成的临时表过大,因此出错。
解决办法。重启了mysql,然后加上where分三段查询,避免全表扫描。
测试结果:第一个有用,第二个有道理,没测试过,过了第一个就解决了,第二个以后好好研究下
error code 28: no space left on device
sql语句执行错误:select title,gid from blog_blog where date < 1246200383 and hide = 'n' and type='blog' order by date desc limit 1
error writing file 'c:\windows\temp\my9b6f.tmp' (errcode: 28)
解决方法:
1.释放c:\windows\temp\空间
2.因为原表太大,所以查询时生成的临时表过大,因此出错。
解决办法。重启了mysql,然后加上where分三段查询,避免全表扫描。
测试结果:第一个有用,第二个有道理,没测试过,过了第一个就解决了,第二个以后好好研究下
上一篇: PHP源码之 ext/mysql扩展部分
推荐阅读
-
php mysql Errcode: 28 终极解决方法
-
PHP错误Warning:mysql_query()解决方法
-
PHP提示Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法
-
php将textarea数据提交到mysql出现很多空格的解决方法
-
MySQL4 File ‘c:\mysql\share\charsets\?.conf’ not found (Errcode: 22)的解决方法
-
PHP连接MySQL查询结果中文显示乱码解决方法
-
php 连接mysql连接被重置的解决方法
-
PHP执行批量mysql语句的解决方法
-
php提示Warning:mysql_fetch_array() expects的解决方法
-
php并发对MYSQL造成压力的解决方法