使用与自定义数据类型相关联的默认值删除列

时间:2017-11-07 21:09:13

标签: sql sql-server constraints custom-data-type

我在SQL Server中。 我必须从表'tblA'

中删除一列'colA'
- Column is of type 'myType' - custom datatype.  That custom datatype has its 
  own default value - that we call 'DefaultZero'
- There are many tables with columns of this custom datatype.

当我尝试删除列时,收到错误消息

The object 'DefaultZero' is dependent on column 'colA'.

我明白我必须“以某种方式”删除那种依赖,但我不知道。

I am NOT to delete the custom datatype.  
I am NOT to remove the DefaultZero object.

我觉得在系统架构下的某些系统表中可能存在某些东西,但我不知道该寻找什么。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)