共计 767 个字符,预计需要花费 2 分钟才能阅读完成。
本篇内容介绍了“使用 mysql pt-online-schema-change 方法有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
操作的表必须有主键否则会出错误
加字段:
pt-online-schema-change -u root -h 127.0.0.1 -p 123456 –alter= add column address varchar(20) –execute D=test,t=t4
加索引:
pt-online-schema-change -u root -h 127.0.0.1 -p 123456 –alter= add key idx_address(address) –execute D=test,t=t4
删字段
pt-online-schema-change -u root -h 127.0.0.1 -p 123456 –alter= drop column address –execute D=test,t=t4
在线修改引擎
pt-online-schema-change -u root -h 127.0.0.1 -p 123456 –alter= ENGINE=InnoDB –execute D=test,t=t4
修改字段
pt-online-schema-change -u root -h 127.0.0.1 -p 123456 –alter= modify column address varchar(40) –execute D=test,t=t4
“使用 mysql pt-online-schema-change 方法有哪些”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!