如何清空一个非常大的mysql表?

发布于 2024-11-05 18:12:33 字数 156 浏览 0 评论 0原文

每当我尝试清空一张大桌子

truncate table the_huge_table;

并等待几分钟时,我看不到任何事情发生。 另一方面,我不想删除整个桌子,因为不确定如何重新生成它,所以想知道轻松清空这个怪物的最佳方法是什么?

Whenever I try to empty a large table so using

truncate table the_huge_table;

and wait for several minutes, I see nothing take place.
On the other hand I do not want to remove the entire table because not sure how to regenerate it so wondering what is the best way to easily empty this monster?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

非要怀念 2024-11-12 18:12:33

SHOW CREATE TABLE the_huge_table 将向您展示如何在删除表后重新创建该表。

另一种选择是克隆表结构:

CREATE TABLE cloned LIKE the_huge_table;
RENAME TABLE the_huge_table TO drop_me, cloned TO the_huge_table;
DROP TABLE drop_me;

SHOW CREATE TABLE the_huge_table will show you how to recreate the table if you drop it.

Another option is to clone the table structure:

CREATE TABLE cloned LIKE the_huge_table;
RENAME TABLE the_huge_table TO drop_me, cloned TO the_huge_table;
DROP TABLE drop_me;
莫相离 2024-11-12 18:12:33
mysqldump --no-data dbname tablename > /tmp/backup.sql
mysql -e 'drop table tablename' dbname
mysql dbname < /tmp/backup.sql
mysqldump --no-data dbname tablename > /tmp/backup.sql
mysql -e 'drop table tablename' dbname
mysql dbname < /tmp/backup.sql
入画浅相思 2024-11-12 18:12:33

将结构复制到新的空表中。
删除旧表。
重命名空副本。

CREATE TABLE copy_huge_table LIKE the_huge_table;
DROP TABLE the_huge_table;
RENAME TABLE copy_huge_table TO the_huge_table;

Copy the structure to a new, empty table.
Drop the old table.
Rename the empty copy.

CREATE TABLE copy_huge_table LIKE the_huge_table;
DROP TABLE the_huge_table;
RENAME TABLE copy_huge_table TO the_huge_table;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文