如何清空一个非常大的mysql表?
每当我尝试清空一张大桌子
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
SHOW CREATE TABLE the_huge_table
将向您展示如何在删除表后重新创建该表。另一种选择是克隆表结构:
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:
将结构复制到新的空表中。
删除旧表。
重命名空副本。
Copy the structure to a new, empty table.
Drop the old table.
Rename the empty copy.