MariaDB 需要很长时间才能执行

MariaDB take long time to execute(MariaDB 需要很长时间才能执行)
本文介绍了MariaDB 需要很长时间才能执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在MariaDB-10.3.1"中有一个包含 500 行数据的表

I have a table with 500 rows of data in "MariaDB-10.3.1"

当我运行TURNUCATE, ALTER, DROP, RENAME"时操作需要很长时间才能执行,但什么也没发生,我等待 30 分钟等待 500 行数据但未完成执行.

When i run "TURNUCATE, ALTER, DROP, RENAME" operations take a long time for execution and nothing happend, i wait 30 minutes for 500 rows of data but not finished execution.

谁能帮我解决这个问题?

anyone can help me to solve the problem?

推荐答案

我用

SELECT concat('KILL ', ID, ';') FROM INFORMATION_SCHEMA.PROCESSLIST WHERE `db` IN (DATABASE_NAMES);

然后杀死所有进程然后我的查询就起作用了.

and kill all process then my query worked.

谢谢大家.

这篇关于MariaDB 需要很长时间才能执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)