如何在vs2010中部署dbproj?
简单的问题,我是 dbproj 的新手,你如何将它从 vs2010 实际部署到我的 sqlserver 上?我构建了 dbproj,它在 sql/debug 文件夹中创建了一堆文件,那么我该怎么办?
Quick question, I'm new to dbproj, how do you actually deploy it to my sqlserver from vs2010? I built the dbproj, and it created a bunch of files in sql/debug folder, then what do I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在
部署
选项卡上配置数据库项目属性,并将部署操作:
设置为创建部署脚本(.sql)并部署到数据库 具有有效的目标数据库设置,当您使用
构建
菜单下的部署解决方案
操作时,将部署数据库。If you configure the database project property on the
Deploy
tab and set theDeploy action:
toCreate a deployment script (.sql) and deploy to the database
with valid Target Database Settings, the database will be deployed when you use theDeploy Solution
action under theBuild
menu.项目上应该有一个“部署”命令。有关配置的更多详细信息,请参见 MSDN:http://msdn.microsoft.com /en-us/library/aa833165.aspx
There should be a "Deploy" command on the project. More details on configuring it are on MSDN: http://msdn.microsoft.com/en-us/library/aa833165.aspx