解决 javax.transaction.xa.XAException: null
原文链接:https://blog.csdn.net/qq_37279783/article/details/89137766。版权声明:本文为CSDN博主「小蜗牛的路」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。使用 dba账号 通过以下命令给数据源的用户授予XA权限。
·
javax.transaction.xa.XAException: null
解决方法之一:
使用 dba账号 通过以下命令给数据源的用户授予XA权限
grant select on sys.dba_pending_transactions to USER_NAME;
grant select on sys.pending_trans$ to USER_NAME;
grant select on sys.dba_2pc_pending to USER_NAME;
grant execute on sys.dbms_system to USER_NAME
更多推荐
所有评论(0)