Altering user-defined table types in SQL Server

前端 未结 7 1519
心在旅途
心在旅途 2020-12-13 12:06

How can I alter a user-defined table type in SQL Server ?

7条回答
  •  醉话见心
    2020-12-13 12:23

    If you can use a Database project in Visual Studio, you can make your changes in the project and use schema compare to synchronize the changes to your database.

    This way, dropping and recreating the dependent objects is handled by the change script.

提交回复
热议问题