ALTER SESSION SET "_ORACLE_SCRIPT"=true;
CREATE USER oracle
IDENTIFIED BY oracle;
CREATE USER jennifer
IDENTIFIED BY jennifer;
권한 부여는 sysdba 에서 실행
[ORACLE] ORA-01045
계정 접속이 되지 않는 에러
grant connect, resource to oracle;
grant connect, resource to jennifer;
ORA-01950: no privileges on tablespace 'USERS'
INSERT 가 되지 않는 문제
(특정 용량 만큼 사용 가능하도록 허용)
2GB (1024MB) 만큼 허용
alter user oracle quota 2048M on USERS;
alter user jennifer quota 2048M on USERS;
(무제한 사용권한)
grant unlimited tablespace to oracle;
grant unlimited tablespace to jennifer;
'Database' 카테고리의 다른 글
oracle 12c (12.2.0.1) - 테스트용 테이블 생성 (0) | 2021.06.27 |
---|---|
Oracle DB 12c (12.2.0.1) 설치 (0) | 2021.06.27 |
[Oracle DB] Password 만료 시 해결 방법 (0) | 2021.04.15 |
[Oracle DB] sqlplus 명령어 (0) | 2020.07.14 |