Oracle 视图 ALL_LOG_GROUPS 官方解释,作用,如何使用详细说明
本站中文解释
视图
ALL_LOG_GROUPS 视图是 Oracle 数据库中常用的一个视图,包含关于特定数据库里面的所有日志组的信息。它用于显示每一个日志组的状态(当前激活的,备用的,被关闭的,并且是否将要更改),以及这些日志组的类型(归档模式或是未归档模式)和位置(归档模式下的归档位置)。
ALL_LOG_GROUPS 视图在管理日志组时非常有用,因为它可以获取记录在日志组里的所有信息。使用者可以使用该视图检查日志组的状态,类型和更新信息。
使用 ALL_LOG_GROUPS 视图的语句示例:
SELECT * FROM ALL_LOG_GROUPS;
该语句用于显示数据库中的所有日志组。
官方英文解释
ALL_LOG_GROUPS
describes the log group definitions on the tables accessible to the current user.
Related Views
-
DBA_LOG_GROUPS
describes the log group definitions on all tables in the database. -
USER_LOG_GROUPS
describes the log group definitions on the tables owned by the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the log group definition |
|
|
|
Name of the log group definition |
|
|
|
Name of the table on which the log group is defined |
|
|
Type of the log group:
|
|
|
|
|
|
|
|
Indicates whether the name of the supplemental log group was system generated ( |
See Also:
-
“DBA_LOG_GROUPS”
-
“USER_LOG_GROUPS”