Oracle 视图 DBA_USED_OBJPRIVS_PATH 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图:DBA_USED_OBJPRIVS_PATH
用途:这个视图是在下面的情况下使用的:当用户使用现有的对象权限访问一个对象(例如,一个表)时,它可用于检查这个路径以及这个对象权限如何被继承。
使用方法:使用DBA_USED_OBJPRIVS_PATH视图可以查看某个用户获得权限的路径,以及以及有哪些用户可以访问哪些对象的层次架构。它将包括这样的数据:用户名、授予的权限、提供此权限的对象、位置以及几种可能的访问方法(继承或者显式授权)。
官方英文解释
DBA_USED_OBJPRIVS_PATH
lists the object privileges that are used for the privilege analysis policies reported by the DBMS_PRIVILEGE_CAPTURE.GENERATE_RESULT
procedure.
This view provides access to analyzed privilege records in SYS
tables.
You must have the CAPTURE_ADMIN
role to access this view.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Name of the privilege analysis policy |
|
|
| The sequence number of the privilege analysis run during which the privilege was reported |
|
| Operating system login username | |
|
| Client host machine name | |
|
| Module name | |
|
|
| Name of the user whose privilege was reported |
|
| Used role | |
|
| Used object privilege | |
|
| Object owner | |
|
| Name of the object that | |
|
| Type of the object that | |
|
| Name of the column that | |
|
| Indicates whether the
| |
|
| Object privilege grant paths | |
|
| The name of the run during which the privilege was reported |
See Also:
“DBA_UNUSED_OBJPRIVS_PATH”
“DBA_USED_OBJPRIVS”
Oracle Database Security
Guide for more information about privilege analysisOracle Database PL/SQL
Packages and Types Reference for more information about theDBMS_PRIVILEGE_CAPTURE.GENERATE_RESULT
procedure
标签:对象,视图,权限,路径,是在