将数据库项目部署到 SQL Server 2008 Express
我在 Windows 7 中运行 SQL Server 2008 Express 版本 10.0.2531.0 SP1(64 位)
我尝试将数据库项目部署到此实例(使用 Visual Studio 2010),但我不断收到此错误消息
无法在目标实例上继续执行 DAC 操作,因为它不支持 DAC。指定另一个实例,或升级 到支持 DAC 的版本
有没有一种解决方案,除了升级到 SQL Server 的另一个版本之外,我确实需要保留 Express 版本。也许我只是错过了一些东西,
谢谢。
I am running SQL Server 2008 Express, version 10.0.2531.0, SP1 (64-bit) in Windows 7
I am trying to deploy a database project to this instance (using Visual Studio 2010) but I keep getting this error message
Unable to proceed with DAC operations on the target instance because it does not support DACs. Specify another instance, or upgrade
to a version that supports DACs
Is there a solution that besides upgrading to another version of SQL Server, I really need to stay with an Express version. Maybe I am just missing something
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dacpacks 作为一种部署数据库解决方案的机制在 SQL Server 2008 R2 中引入 - 其中还存在 Express 版本。
请参阅:DACPAC 是升级到 SQL Server 2008 的一个原因R2
您需要使用该版本 (v10.50.*) 才能使用 DAC 包。您可以从 Microsoft 免费下载 SQL Server 2008 R2 Express 。
Dacpacks as a mechanism to deploy database solutions were introduced in SQL Server 2008 R2 - of which an Express edition also exists.
See: DACPAC is a reason to upgrade to SQL Server 2008 R2
You'll need to use that version (v10.50.*) to make use of DAC packs. You can download SQL Server 2008 R2 Express from Microsoft for free.