Alter user defined type in SQL Server

后端 未结 10 1120
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 19:47

I created few user defined types in my database as below

CREATE TYPE [dbo].[StringID] FROM [nvarchar](20) NOT NULL

and assigned them to vario

10条回答
  •  渐次进展
    2020-12-02 20:44

    New answer to an old question:

    Visual Studio Database Projects handle the drop and recreate process when you deploy changes. It will drop stored procs that use UDDTs and then recreate them after dropping and recreating the data type.

提交回复
热议问题