Oracle 视图 DBA_ACTIVITY_CONFIG 官方解释,作用,如何使用详细说明
本站中文解释
_MAP
Oracle视图DBA_ACTIVITY_CONFIG_MAP是一个数据字典视图,显示了行为映射表中所有记录的详细信息。它主要用于配置语句活动,以便实施某些策略以及活动和功能的定制。
它的结构如下:
DBA_ACTIVITY_CONFIG_MAP(活动ID,映射ID,MAP_CONTEXT,SECURITY_CLASS, SECURITY_RESTRICTION, USER_OBJECT_NAME, USER_OBJECT_OWNER)
– 活动ID:活动编号
– 映射ID:映射编号
– MAP_CONTEXT:映射上下文
– SECURITY_CLASS:映射安全类
– SECURITY_RESTRICTION:权限限制
– USER_OBJECT_NAME:用户对象名
– USER_OBJECT_OWNER:用户对象所有者
下面是使用这个视图的示例:
SELECT ACTION_ID, MAP_CONTEXT, SECURITY_CLASS, SECURITY_RESTRICTION FROM DBA_ACTIVITY_CONFIG_MAP WHERE ACTION_ID=’XXX’;
此查询可以查询指定的活动ID的映射内容,安全类别和安全限制。
官方英文解释
DBA_ACTIVITY_CONFIG
describes the configuration parameters that control the Object Activity Tracking System (OATS).
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the container to which the data pertains |
|
|
|
Name of the configuration parameter |
|
|
|
Value of the configuration parameter |
|
|
|
If the value of the configuration parameter was last updated by a user, then this column displays the time at which the parameter was updated. Otherwise, this column is null. |
|
|
|
If the value of the configuration parameter was last updated by a user, then this column displays the name of the user who performed the update. Otherwise, this column is null. |
Note:
This view is available starting with Oracle Database 21c.