pt-online-schema-change

在线修改表结构

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)