1. 신규 사용자를 위한 Tablespace 생성
예제)
SQL> create tablespace tablespace_name datafile '/oradata/datafile.dbf' size 100M;
[참조] http://www.oracleclub.com/lecture/1095
2. 신규 사용자 생성
예제)
SQL> create user user_name identified by password default tablespace tablespace_name;
[참조] http://www.oracleclub.com/lecture/1005
3. 신규 사용자에게 권한 할당
예제)
SQL> grant connect, resource to user_name
[참조] http://www.oracleclub.com/lecture/1005