将数据库迁移到 SQL Azure

发布于 2024-10-16 05:45:32 字数 561 浏览 5 评论 0 原文

据我所知,将现有数据库迁移到 SQL Azure 的关键点是:

  1. 表必须包含集群 指数。这是强制性的。
  2. 架构和数据迁移应该是 通过数据同步、批量复制来完成, 或 SQL Azure 迁移 向导,但不使用 SSMS 中的恢复选项。
  3. .NET 代码应该处理 与以下相关的暂时情况 SQL Azure
  4. 登录名的创建位于 master 数据库。
  5. 某些 TSQL 功能可能不可用 支持。

我想这就是全部,对吗?在开始迁移之前我是否遗漏了任何其他考虑因素?

亲切的问候。

As far as I know the key points to migrate an existing database to SQL Azure are:

  1. Tables has to contain a clustered
    index. This is mandatory.
  2. Schema and data migration should be
    done through data sync, bulk copy,
    or the SQL Azure migration
    wizard
    , but not with the restore option in SSMS.
  3. The .NET code should handle the
    transient conditions related with
    SQL Azure
    .
  4. The creation of logins is in the
    master database.
  5. Some TSQL features may be not
    supported.

And I think that's all, am I right? Am I missing any other consideration before starting a migration?

Kind regards.

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

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

发布评论

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

评论(3

美男兮 2024-10-23 05:45:32

更新 2015-08-06

其他注意事项:

  • 基本层允许 2 GB
  • 标准层允许 250 GB
  • 高级层允许 500 GB

不支持以下功能:

Update 2015-08-06

Additional considerations:

  • Basic tier allows 2 GB
  • Standard tier allows 250 GB
  • Premium tier allow 500 GB

The following features are NOT supported:

萌无敌 2024-10-23 05:45:32

我会添加带宽注意事项(针对初始人口和持续带宽)。这有成本和性能的考虑。

另一个潜在的考虑因素是任何长时间运行的进程或大型事务可能会受到 SQL Azure 相当神秘的限制技术的影响。

I'd add in bandwidth considerations (for initial population and on-going bandwidth). This has cost and performance considerations.

Another potential consideration is any long running processes or large transactions that could be subject to SQL Azure's rather cryptic throttling techniques.

娇俏 2024-10-23 05:45:32

另一个需要指出的关键领域是 SQL 作业。由于 SQL 代理未运行,因此不支持 SQL 作业。

迁移这些作业的一种方法是进行重构,以便工作角色可以启动这些任务。作业的内容可能会移至存储过程中以减少重新架构。然后,可以将辅助角色设计为在适当的时间唤醒并运行并启动存储过程。

Another key area to point out are SQL Jobs. Since SQL Agent is not running, SQL Jobs are not supported.

One way to migrate these jobs are to refactor so that a worker role can kick off these tasks. The content of the job might be moved into a stored procedure to reduce re-architecture. The worker role could then be designed to wake up and run at the appropriate time and kick off the stored procedure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文