oracle|錯誤|載入|解決 在Oracle資料庫的機器上操作:
1.根據KB 193893, 在Oracle裡面建立兩個視圖,請使用SYS帳號。
指令碼的預設路徑在:oracle\ora92\rdbms\admin\xaview
2.建立兩個視圖以後,需要給這兩個建立立的視圖添加Public許可權:
SQL>grant select on v$xatrans$ to public with grant option;
SQL>grant select on v$pending_xatrans$ to public with grant option;
SQL>grant select any table to public;