生成更改脚本
假设我在 SQL Server Management Studio 中为某个表添加了新列。有什么方法可以获取当我按“保存”时执行的更改脚本吗?
我想要实现的是将相同的更改应用于其他数据库(我们为每个开发人员提供一个单独的数据库用于调试目的)。
Let's imagine I added new column for some table in SQL Server Management Studio. Is there any way to get change script which is executed when I press save?
What I want to achieve is to apply the same change to other databases (we have a separate database for each developer for debuggin purposes).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在使用 MS SSMS 中的表设计器。
在设计器中进行更改,然后在点击
保存
之前,转到表设计器
菜单并选择生成更改脚本...
。I assume you are using table designer in MS SSMS.
Do the changes in the designer and just before hitting
Save
, go to theTable Designer
menu and selectGenerate Change Script...
.