数据库是否处于备份模式?

发布于 2024-09-11 18:19:21 字数 43 浏览 7 评论 0原文

有什么办法可以知道数据库是否处于备份模式。 任何系统表都可以提供此信息。

Is there any way to find whether the database is in backup mode or not.
Is any sys tables can provided this informtion.

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

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

发布评论

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

评论(1

巾帼英雄 2024-09-18 18:19:21

您指的是SQL SERVER中的恢复模型吗?
如果是这样,查询是:

select name,database_id,recovery_model_desc from sys.databases

如果您指的是Oracle数据库,并且您询问如何检查数据库是否处于备份模式(发出“alter database BEGIN BACKUP”后),则查询为:

select * from v$backup;

如果其中一行在状态列中返回 ACTIVE,则以下之一表空间处于备份模式。

Are you referring to a Recovery model in SQL SERVER ?
if so, the query is:

select name, database_id, recovery_model_desc from sys.databases

if you are referring to Oracle database, and you're asking how to check whether the database is in backup mode (after issuing 'alter database BEGIN BACKUP'), then the query is:

select * from v$backup;

if one of the rows return with ACTIVE in the status column, then one of the tablespaces is in backup mode.

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