标签:mysql
需求:由于业务的需要,tmp_employees的emp_no主键字段类型为int已经不能满足业务的需求,此时需要将该表主键字段类型由int 更改为 bigint
使用工具:pt-online-schema-change
./pt-online-schema-change --user=root --password=root456 --recursion-method="processlist" --alter="modify column emp_no bigint not null auto_increment" h=192.168.31.64,P=3306,D=employees,t=tmp_employees --execute
标签:mysql
原文地址:http://gaoquan.blog.51cto.com/4503718/1746309