nugawiki

./categories/server

Oracle ORA-01045 세션·테이블 권한

업데이트 2026-07-21 조회수

ORA-01045: user lacks CREATE SESSION privilege 등으로 접속·DDL이 막힐 때.

grant create session to ������������;
grant create table to ������������;

코멘트 있는 테이블 목록

SELECT table_name, table_type, comments
FROM USER_TAB_COMMENTS
WHERE comments IS NOT NULL;

./comments