ORA-25262: agent name cannot be NULL if address is a multi-consumer queue
Cause: The name for the agent in the LISTEN call was not specified when the agent address was a multi-consumer queue.
Action: Specify a non-NULL name for the agent.
ORA-25262: agent name cannot be NULL if address is a multi-consumer queue
ORA-25262 在使用DBMS_AQADM.CREATE_QUEUE_TABLE 过程中出现这个错误,说明 Agent Name 不允许为 NULL,此时此次操作无效。
使用 DBMS_AQADM.CREATE_QUEUE_TABLE 过程时,在第一个 OUT 标准参数上传 NULL 值作为 Agent Name 的时候会报出ORA-25262错误,说明 Agent Name 不允许为 NULL。
1、为 DBMS_AQADM.CREATE_QUEUE_TABLE 过程的 Agent Name 参数传入有效值(如: ‘agent’),而不是 NULL 值。
2、重新执行 DBMS_AQADM.CREATE_QUEUE_TABLE 过程,这时传入的 Agent Name 参数就不会是 NULL 值,当执行成功后其就会创建一个新的消息队列表。