数据库是否处于备份模式?
有什么办法可以知道数据库是否处于备份模式。 任何系统表都可以提供此信息。
Is there any way to find whether the database is in backup mode or not.
Is any sys tables can provided this informtion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您指的是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.