SQL Server 脚本向导
我正在使用 SQL Server 2005。如果我尝试使用 Management Studio 中的生成脚本向导为 dB 生成脚本(右键单击 dB-> 任务-> 生成脚本),
我在列表。 而安装在不同计算机上的某些 SQL Server 则启用了此选项。
是否缺少服务包或需要修改任何选项才能获得此功能?
I am using SQL Server 2005. If I try to generate scripts for the dB using the Generate Scripts wizard in the management studio (Right click dB-> Tasks-> Generate Scripts)
I get no option like IF EXISTS DROP condition in the list. Whereas some of the SQL Servers installed on different machines have this option enabled.
Is the service pack missing or any option needs to be modified to get this feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果右键单击,向导中会出现一个页面,您可以在其中设置脚本选项。 一种选项是“如果不存在则包含”。 或者转到工具 -> 选项-> SQL Server 对象资源管理器-> 编写脚本来设置它。
If you right-click there is a page in the wizard where you can set your scripting options. One option is "Include IF NOT EXISTS". Or goto the Tools -> Options -> SQL Server Object Explorer-> Scripting to set this.
当我执行此命令时,我得到的只是一个 CREATE DATABASE 语句,然后设置关联的选项。
您想生成 DROP DATABASE 语句吗?
看起来不存在此功能,但您可以生成 drop 语句,然后将其粘贴到前面。
When I execute this command, all I get is a CREATE DATABASE statement and then the associated options are set.
You want to generate a DROP DATABASE statement?
It doesn't look like this functionality is present, but you can generate the drop statement and then paste it in front.