将本地数据库从 app_data 文件夹迁移到 SQL Azure

发布于 2024-12-09 20:59:46 字数 379 浏览 1 评论 0原文

我的本地计算机上的 asp.net 网站的 app_data 文件夹中有一个数据库。我现在尝试使用 SQL Azure 迁移向导 将该数据库迁移到 SQL Azure。这是我的问题。迁移向导只能看到本地 SQL 服务器上的数据库。它在我的应用程序的 app_data 文件夹中看不到数据库,并且我不知道如何连接到它。有没有办法让迁移向导看到这个数据库?或者,有其他方法可以迁移此数据库吗?我已经尝试在 VS 中编写数据库脚本。不幸的是,由于 SQL Azure 和 SQL Azure 的执行方式不同,该脚本无法在 Azure 上执行。常规 SQL Server 工作。我知道根据过去的经验,迁移向导可以轻松解决这些差异。

I have a database in the app_data folder of an asp.net website on my local machine. I'm now trying to migrate that database to SQL Azure using the SQL Azure Migration Wizard. Here's my issue. The Migration Wizard only sees the databases that I have on my local sql server. It does not see the database in my application's app_data folder and I can't figure out how to connect to it. Is there a way to get the migration wizard to see this database? Or, is there an alternative way I can migrate this database? I already tried scripting the database from within VS. Unfortunately the script failed to execute on Azure because of differences in the way that SQL Azure & regular SQL Server work. I know that from past experience the Migration Wizard resolves these differences easily.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城挽邺 2024-12-16 20:59:46
  1. 在本地 SQL Server 上运行您在 VS 中创建的脚本以在本地创建数据库
  2. 使用 SQL Azure 迁移向导从您在 1 中创建的数据库创建新脚本。

或者

  1. 使用 SQL Server 将 app_data 中的数据库附加为 SQL Server 数据库Management Studio
  2. 使用 SQL Azure 迁移向导从您在 1 中附加的数据库创建新脚本。
  1. Run the script you created in VS on your local SQL Server to create the DB locally
  2. Use the SQL Azure Migration Wizard to create the new script from the DB you created in 1.

or

  1. Attach the DB in app_data as a SQL Server DB using SQL Server Management Studio
  2. Use the SQL Azure Migration Wizard to create the new script from the DB you attached in 1.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文