본문 바로가기

IT/oracle&mysql

ORA-01031: insufficient privileges

SMALL

ORA-01031: insufficient privileges

OS : window

Oracle : 11g

접속 방법 : Client -> Server 접근시도


권한이 불충한 이유

------------------------------

grant create session to 유저ID;

grant create session to krmgr;

------------------------------

grant create any table to 유저ID;

grant create any table to krmgr;

------------------------------

grant connect, resource to 유저ID;

grant connect, resource to krmgr ;


grant connect , resource , sysdba  to KRMGR


권한회수를 원하면

REVOKE sysdba ,FROM KRMGR


LIST

'IT > oracle&mysql' 카테고리의 다른 글

oracle tablespace[dbf] DB복원  (0) 2018.05.18
ORACLE TABLE SPACE 및 GRANT 종류  (0) 2017.11.14
WINDOWS ORACLE 외부 SERVER 설정  (0) 2017.10.25
pl/sql CLOB 데이터 파일 읽기  (0) 2016.09.14
pl/sql 파일 읽기/쓰기  (0) 2016.09.14