SQL Server 2005 与 Visual Web Developer 2008 Express 的快速连接
好吧,我首先下载了 SQL Server Express 2008 和 Wed Developer Express 2008,但我无法将两者集成在一起。收到需要正确版本的 SQL Server 2005 的错误消息,所以...
我卸载了 SQL Server Express 2008,并安装了 SQL Server Express 2005。
现在我打开 Visual Web Developer 并尝试添加一个项目 (SQL Database) 到网站项目中的 App_Data 文件夹,现在我收到以下错误。
“在 SQL Server 中生成用户实例已被禁用。使用 sp_configure '用户实例已启用'来生成用户实例。”
好吧,我知道我可以在 SMS Express 中创建数据库和表格,但是我有一堆基于上述方法的培训材料。那么有人可以帮我解决上述错误吗???非常感谢......
还应该注意的是,以上内容是安装在我家用电脑上用于学习目的的。
Ok so I had first downloaded SQL Server Express 2008 and Wed Developer Express 2008, and I could not integrate the two together. Was getting error messages that were wasking for the correct version of SQL Server 2005, so....
I uninstalled SQL Server Express 2008, and installed SQL Server Express 2005.
Now I open the Visual Web Developer and tried to add an item (SQL Database) to the App_Data folder in a web site project, and now I am getting the below error.
"generating user instances in SQL Server is disabled. Use sp_configure 'user instances enabled' to generate user instances."
Ok so I know I can create databases, and tables in the SMS Express, however I have a bunch of training material that is based on the above approach. SO can someone please help me with the above error please??? Thanks very much.....
also should note that the above are installed on my home computer for learning purposes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下 asp.net 论坛帖子有一个可能的解决方案:
http://forums.asp。 net/p/1035148/1429516.aspx
您必须运行以下查询
sp_configure 'userInstancesenabled', 1;重新配置
这可以通过 SMS Express 完成。
The following asp.net forum post has a possible solution:
http://forums.asp.net/p/1035148/1429516.aspx
You have to run the following query
sp_configure 'user instances enabled', 1; RECONFIGURE
This can be done in SMS express.