페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
themeDJango
linenumberstrue
create user [userID] identified by userpassword default tablespace conf_tablespace quota unlimited on conf_tablespace;

...

코드 블럭
select tablespace_name, username, bytes, max_bytes
from dba_ts_quotas
where tablespace_name = 'USERconf_TABLESPACEtablespace' and username = 'JIRA'[userID];


위의 결과값이 아무것도 나오지 않으면(no rows selected) 문제가 있는 것이고 
아래와 같이 나오면 quota가 주어진 것, 즉 해당 유저로 insert table 같은 것이 unlimited하게 사용할 수 있게 잘 설정해준 것이다. 




TABLE USERNA      BYTES  MAX_BYTES
----- ------ ---------- ----------
USERS FOOBAR          0   10485760

1 row selected.

...