Oracle Advanced Queue - ORA-01031: insufficient privileges and ORA-06512: at SYS.DBMS_AQ
时间:2020-02-05 01:32:20
收藏:0
阅读:128
Fix this need the role below:
GRANT aq_administrator_role TO db_user
There is laso other grant commands may need:
E.g:
GRANT EXECUTE ON SYS.DBMS_AQ TO db_user;
GRANT aq_user_role TO tenuser1;
GRANT EXECUTE ON dbms_aqadm TO db_user;
GRANT EXECUTE ON dbms_aq TO db_user;
GRANT EXECUTE ON dbms_aqin TO db_user;
原文:https://www.cnblogs.com/yjyyjy/p/12262146.html
评论(0)