美文网首页
pt-online-schema-change

pt-online-schema-change

作者: 猪肉楠 | 来源:发表于2017-07-17 16:19 被阅读0次

在线修改表结构

pt-online-schema-change --user=root --ask-pass --host=localhost --alter "add create_time datetime default current_timestamp" D=qrbuild,t=linkTable --dry-run --print
  --dry-run 和 --print 可以先测试一下触发器等的正确性,然后再--execute
pt-online-schema-change --user=root --ask-pass --host=localhost --alter "add create_time datetime default current_timestamp" D=qrbuild,t=linkTable --execute

更具体,详见:http://www.cnblogs.com/xiaoyanger/p/6043986.html

相关文章

网友评论

      本文标题:pt-online-schema-change

      本文链接:https://www.haomeiwen.com/subject/fafqkxtx.html