mysql 修改表结构操作
使用 【desc 表名】查看表结构 1、mysql > alter table passwd add id
int(3) not null auto_increment primary key not null first ;
在字段的上面添加一个新的字段。
【mysql】 【shell】 【ADD】 【type】 【varchar】 …
一、故障描述
今天一个朋友遇到数据库遇到一个严重的故障,故障环境如下: MYSQL 5.6.16 RR隔离级别 GITD关闭 表现如下: use db不能进入数据库 show table status不能查询到表信息 schema.processlist来看有大量的 Waiting for table metadata lock
情急之下他杀掉了一大堆线程后发现还是不能恢复,最后杀掉了一个没有及时提交的事物才恢复正常。
【mysql】 【lock】 【Transaction】 【test】 【metadata】 …