Oracle 视图 DBA_SR_OBJ_ALL 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_SR_OBJ_ALL是全局的Oracle视图,用于提供全部促使安全审核的对象的详细信息。它包含包、触发器、程序、表和用户建立的视图的审核。该视图的主要用途是查看已安装的安全基础的全部信息。
查询该视图可以使用以下SQL语句:
SELECT * FROM DBA_SR_OBJ_ALL;
官方英文解释
DBA_SR_OBJ_ALL
provides information on the objects registered for synchronous refresh for current and defunct groups.
To see information on the objects registered for synchronous refresh for only the current groups, use the DBA_SR_OBJ
view.
Related View
USER_SR_OBJ_ALL
provides information on the objects registered for synchronous refresh for current and defunct groups for the current user. Its columns are the same as those in DBA_SR_OBJ_ALL
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the synchronous refresh object |
|
|
|
Name of the synchronous refresh object |
|
|
Type of synchronous refresh object:
|
|
|
|
|
Group ID of the synchronous refresh group to which this object belongs |
|
|
Indicates whether the record is for a current group:
|
|
|
|
Name of the staging log for tables. This column has a value of NULL for materialized views. |
See Also:
“USER_SR_OBJ_ALL”