Hi Everyone,
We recently performed a database upgrade from Oracle 12c to 19c using an export/import method. Post-upgrade, we are facing an issue where Subscription Notifications are not working — email notifications are not being triggered as expected.
During my research, I found an article suggesting to stop and start the AQ (Advanced Queuing) for the subscription notification to resolve this issue. The recommended commands are:
EXEC DBMS_AQADM.stop_queue('SYS.AQ_SRVNTFN_TABLE_Q_1', true, true);
EXEC DBMS_AQADM.start_queue('SYS.AQ_SRVNTFN_TABLE_Q_1', true, true);
Link :
However, when we run these commands, we receive the following error:
ERROR at line 1:
ORA-24010: QUEUE SYS.AQ_SRVNTFN_TABLE_Q_1 does not exist
ORA-06512: at "SYS.DBMS_AQADM", line 788
ORA-06512: at "SYS.DBMS_AQADM_SYS", line 9009
ORA-06512: at "SYS.DBMS_AQADM_SYSCALLS", line 926
ORA-06512: at "SYS.DBMS_AQADM_SYS", line 8994
ORA-06512: at "SYS.DBMS_AQADM", line 783
ORA-06512: at line 1
All Oracle Queues appear to be enabled from the application side.
Has anyone faced this issue before?
Any guidance or steps to troubleshoot and resolve this would be greatly appreciated!
Thanks in advance for your help.