Lightswitch Beta 2 未连接到 .\SQLExpress
大家好,有人用过 LightSwitch Beta 2 吗?我在 VS2010 SP 1 上安装了这个 LightSwitch beta 2
现在我在项目构建中遇到以下错误。
建立时发生错误 连接到 SQL Server 实例 '.\SQLEXPRESS'。用户实例 不支持登录标志 SQL Server 的版本。连接方式 将被关闭。 C:\程序文件 (x86)\MSBuild\Microsoft\VisualStudio\LightSwitch\v1.0\Microsoft.LightSwitch.targets
我有一个区别,我在我的计算机上安装了 SQL Server 2008 R2。在安装此 R2 LightSwitch beta 1(几个月前)之前,它可以正常工作。
现在我到目前为止所做的一切都转到了所有配置文件的根部,其中引用了 .\SQLExpress 将其修改为使用完整的实例名称和用户名并设置“User Instance=false”但我得到了这个错误来自构建。
有人知道吗?
(我无法卸载 SQL 2008 R2 - 其中发生了太多事情)。
Hi Has anyone used LightSwitch Beta 2. Well I installed this LightSwitch beta 2 on VS2010 SP 1
Now I am getting the following error with the project build.
An error occurred while establishing a
connection to SQL Server instance
'.\SQLEXPRESS'. The user instance
login flag is not supported on this
version of SQL Server. The connection
will be closed. C:\Program Files
(x86)\MSBuild\Microsoft\VisualStudio\LightSwitch\v1.0\Microsoft.LightSwitch.targets
One difference I have, I installed SQL Server 2008 R2 on my machine. Before installing this R2 LightSwitch beta 1 (few months back) was working.
Now what I have done so far is gone to the roots of the all config file where there is a reference to .\SQLExpress modified it to use a full instance name and user name and set the "User Instance=false" Yet I am getting this error from build.
Anyone get any idea?
(I can't un-install SQL 2008 R2 - too much going on in there).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了调试和开发 LightSwitch 应用程序,必须使用 SQL Express。 Beth Massi 在下面的帖子中解释了原因。
http://social.msdn .microsoft.com/Forums/en-US/lightswitchgeneral/thread/de2e7ee5-fc82-4614-9245-4f4a9ae7185f
如果您仍然收到错误“此版本的 SQL Server 不支持用户实例登录标志”连接到 SQL Express 时,可以使用以下 SQL 来打开用户登录实例标志。
EXEC sp_configure '用户实例已启用', 1
去
重新配置
去
In order to debug and develop LightSwitch applications, SQL Express must be used. Beth Massi explains why in the following thread.
http://social.msdn.microsoft.com/Forums/en-US/lightswitchgeneral/thread/de2e7ee5-fc82-4614-9245-4f4a9ae7185f
If you still receive the error 'The user instance login flag is not supported on this version of SQL Server' when connecting to SQL Express, the following SQL can be used to switch on the user login instance flag.
EXEC sp_configure 'user instances enabled', 1
GO
Reconfigure
GO