最小锁的情况添加 not null 约束
摘要:
当大表字段添加 not null 时,直接执行 alter column_name set not null, 数据库对表加的是 ACCESS EXCLUSIVE LOCK 锁,会阻塞读写,同时全表扫描检查是否所有记录满足 not null 条件。当表比较小或是使用频率不高时,可以使用这种方式,当表 阅读全文
posted @ 2020-07-09 15:15 Still water run deep 阅读(287) 评论(0) 推荐(0) 编辑