./categories/server
Oracle ORA-01045 세션·테이블 권한
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;
관련 링크: https://rainny.tistory.com/161
./comments