2

可能重复:
将 ASP.NET 成员资格数据库迁移到 SQL Azure

我最近向 Microsoft Azure 发布了一个 MVC3 应用程序,在一些帮助下,我能够让我的 EF 数据库正常工作。但是,我遇到了我使用的默认角色和用户的问题,而不是为管理员登录等创建自己的表。

我找到了需要您运行 Aspnet_regsql.exe 的答案,但我收到以下错误:

Setup failed.

Exception:
An error occurred during the execution of the SQL file 'InstallCommon.sql'. 
The SQL error number is 40508 and the SqlException message is: USE statement
is not supported to switch between databases. Use a new connection to connect
to a different Database.

我搜索了这个错误,发现这不适用于 Windows Azure。它让我看到这篇文章,它有助于解释原因并提供解决方案:http ://thinkfirstcodelater.com/blog/?p=637

它告诉我下载以下文件并运行它们。http://archive.msdn.microsoft.com/KB2006191/Release/ProjectReleases.aspx?ReleaseId=3539

问题是,当我运行该文件夹中的应用程序时,命令行出现并消失。我看不到它在说什么,只是它失败了。我能做些什么来解决这个问题?

最初的问题源于此:

Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'.

当我尝试登录自己的网站时显示。

任何帮助将不胜感激。谢谢!

4

1 回答 1

0

您需要适用于 SQL Azure 的版本,因为就像错误所说的那样,SQL Azure 不支持 USE 语句: KB2006191 - 更新了用于 SQL Azure 的 ASP.NET 脚本

注意:重复我如何在 sql azure 上运行 aspnet_regsql?

于 2012-06-25T18:06:36.737 回答