把Oracle的SQL執行計劃 授權給普通使用者

mengzhaoliang發表於2009-07-02

授權給SQL語句執行計劃的使用者,要確定一下資料庫中同義詞是否是同一物件,debug可以有plan_table的許可權。

 

如:

create user debug
identified by debug;

grant connect to debug;
grant create any table to debug;
grant select any table to debug;
grant delete any table to debug;
grant update any table to debug;

 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12778571/viewspace-608183/,如需轉載,請註明出處,否則將追究法律責任。

相關文章