Oracle 视图 DBA_AQ_AGENT_PRIVS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle 视图 DBA_AQ_AGENT_PRIVS 表示 AQ 代理的特权和它们的所有者。这个视图存储所有与 AQ 数据库用户有关的安全信息,该用户拥有代理消息传送,处理、接收。

使用这个视图允许检测当前用户是否具有某项 AQ 权限。用户可以通过查询这个视图来获取某个 AQ 代理的特权和它们的所有者。

下面是一个用于检索 DBA_AQ_AGENT_PRIVS 视图的示例查询:

SELECT * FROM DBA_AQ_AGENT_PRIVS WHERE AGENT_NAME=’my_agent’;

官方英文解释

DBA_AQ_AGENT_PRIVS displays information about the registered AQ agents that are mapped to all users in the database.

Related View

USER_AQ_AGENT_PRIVS displays information about the registered AQ agents that are mapped to the current user. This view does not display the DB_USERNAME column.

Column Datatype NULL Description

AGENT_NAME

VARCHAR2(128)

NOT NULL

Name of the AQ agent

DB_USERNAME

VARCHAR2(128)

Name of the database user that the agent maps to

HTTP_ENABLED

VARCHAR2(4)

Indicates whether the agent is allowed to access AQ through HTTP (YES) or not (NO)

SMTP_ENABLED

VARCHAR2(4)

Indicates whether the agent is allowed to access AQ through SMTP (YES) or not (NO)

See Also:

“USER_AQ_AGENT_PRIVS”


数据运维技术 » Oracle 视图 DBA_AQ_AGENT_PRIVS 官方解释,作用,如何使用详细说明