博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql查询大表出现的一个错误
阅读量:6293 次
发布时间:2019-06-22

本文共 353 字,大约阅读时间需要 1 分钟。

 

第一次测试执行下面的语句时发生如下错误:bigdata里面有100万条数据mysql> select count(*) from (select distinct(id) from bigdata) as total;ERROR 1317 (70100): Query execution was interrupted等了一会再执行一下就成功了mysql>  select count(*) from (select distinct(id) from bigdata) as total;+----------+| count(*) |+----------+|   598898 |+----------+1 row in set (6.60 sec)猜测有可能是系统原因,CPU或内存运行不足导致。

 

转载地址:http://pldta.baihongyu.com/

你可能感兴趣的文章
算法のLowLow三人行
查看>>
appcompat_v7出现红叉解决方法
查看>>
javascript事件之:jQuery事件接口概述
查看>>
概率统计与机器学习:常见分布性质总结
查看>>
wcf部署到服务器上后,取不出oralcle数据
查看>>
嵌入式LINUX入门到实践(二)
查看>>
Linux的三种特殊权限
查看>>
PKU 2068 Nim
查看>>
测试基础-1.1
查看>>
15、响应式布局和BootStrap 全局CSS样式知识点总结-part2
查看>>
【MySQL】通过Binary Log简单实现数据回滚(一)
查看>>
255.Spring Boot+Spring Security:使用md5加密
查看>>
记录一款SQLite数据库管理软件
查看>>
将Oracle的语言从中文修改为英文
查看>>
matlab编译错误代码中英对照
查看>>
Python 元组
查看>>
hbase(ERROR: org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet)
查看>>
[ZJOI2010]count 数字计数
查看>>
多校4 1001 Olympiad
查看>>
hdu1085 Holding Bin-Laden Captive!
查看>>