SQL SERVER 2005中复制一个表的数据到另外一个表的时候出现的一个问题

问题显示:Cannot insert the value NULL into column ”, table ”; column does not allow nulls. INSERT fails.

解决办法:

在Table中,找到提示的Column,修改它的属性为:

allow Nulls=N
Identity = Y
Identity seed = 1
Identity increment = 1