将用户配置文件SQL数据库导入Windows Azure

时间:2014-06-15 22:25:43

标签: asp.net sql azure

我是一个渴望在Windows Azure中设置我的第一个网站的初学者。我发布了它并在Windows Azure中创建了一个Sql数据库。

在我的本地虚拟机中,我有一个包含用户配置文件数据库的SQL管理工作室。有没有办法导出那个并导入到Azure?

1 个答案:

答案 0 :(得分:1)

您可以直接从SSMS部署它。右键单击对象资源管理器窗格中的数据库,选择任务 - >将数据库部署到Windows Azure SQL数据库命令:

enter image description here

在“部署设置”中,单击“连接”按钮,然后连接到Azure服务器:

enter image description here

单击“下一步”:

enter image description here

查看摘要,然后单击“完成”:

enter image description here

成功部署后,在SSMS中连接到Azure服务器,您将看到您的数据库:

enter image description here

修改

如果在部署期间遇到错误,请检查Azure SQL数据库中的限制列表:

Azure SQL Database General Guidelines and Limitations

Azure SQL Database Security Guidelines and Limitations

SQL Server Feature Limitations (Azure SQL Database)

此外,这是一篇关于如何使用SQL Server数据工具将数据库迁移到SQL Azure的博客文章:Migrating a Database to SQL Azure using SSDT

希望这有帮助