摘要: 新增功能,需要新增一列,如果直接加的话会卡死ALTER TABLE dbo.test1 ADD n4 BIT DEFAULT(0) not null采用以下步骤执行成功:1.ALTER TABLE dbo.test1 ADD n4 BIT DEFAULT(0)2.ALTER TABLE [dbo].... 阅读全文
posted @ 2015-12-30 15:06 davidhou 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 历史遗留问题,某些字段中有默认值,但允许为空,且记录中有为空的数据。直接更改为非空的话会报错,解决办法:1.alter table test1 with nocheck add constraint ck_n3 check (n3 is not null) 增加一个非空的约束但加上with noch... 阅读全文
posted @ 2015-12-30 14:50 davidhou 阅读(588) 评论(0) 推荐(0) 编辑