'Debug'에 해당되는 글 1건

  1. 2013.06.26 Procedure Debug 권한 부여

고객사에서 요청이 와서 debug 권한이 있다는걸 처음 알게되었다.

 

ORA-01031: insufficient privileges
 ORA-06512: at "SYS.PBSDE", line 78
ORA-06512: at "SYS.DBMS_DEBUG", line 224
ORA-06512: at line 2

 

해결:

GRANT DEBUG CONNECT SESSION TO SCOTT;
GRANT DEBUG ANY PROCEDURE TO SCOTT;

Posted by neo-orcl
,