检查数据库恢复是否完成

发布于 2024-07-16 16:20:52 字数 186 浏览 9 评论 0原文

我们得到了由另一个来源管理的夜间备份/恢复。 我们需要在恢复后立即执行 SSIS 包。

目前,所有流程都是通过估计每个步骤需要多长时间来及时执行的,这很容易出错。

问题是,我如何检查恢复是否完成并执行 SSIS 包?

注意:备份/恢复不能使用SSIS 来完成。

We got a nightly backup/restore managed by another source. And we need to execute an SSIS package right after restore.

At the moment, all the processes are executed in a timely fashion by estimating how long every step can take which is very error prone.

Question is, how can i check if restore finished and execute the SSIS package?

NOTE: backup/restore is executed cannot be done with SSIS.

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

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

发布评论

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

评论(1

烦人精 2024-07-23 16:20:52

好吧,我不知道完美的解决方案,但你可以尝试以下方法。

SELECT DATABASEPROPERTYEX ('DB_NAME', 'STATUS')

这将为您提供数据库的状态,如果数据库仍在恢复,则为“RESTORING”。 您可以在作业代理中创建一个重复作业,该作业设置为在恢复开始后运行。 当数据库完成恢复后,状态将为“ONLINE”,您可以从 SQL 执行 SSIS 包,作业结束。

我不知道有什么优雅的解决方案,但希望它有帮助。

Well I don't know of a perfect solution but you could try the following.

SELECT DATABASEPROPERTYEX ('DB_NAME', 'STATUS')

That'll give you the status of the database, "RESTORING" if it is still restoring. You could create a recurring job in the Job Agent, which is set to run, after the restoration has started. When the database is done restoring the status will be "ONLINE" and you can execute the SSIS package from SQL, and the Job ends.

I don't know of an elegant solution but hope it helped.

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