[DB] new DB 생성
1. 시스템 계정으로 sqlplus 접속
c:>sqlplus system/12345@testdb
2. TABLE SPACE 생성하기
테이블 스페이스 크기는 100M로 생성하고 자동으로 5MB씩 용량이 자동으로 늘어나도록 테이블 스페이스를 생성
SQL> create tablespace choiTS datafile ‘d:\app\it-5c\oradata\testdb\choiTS.dbf’ size 100M autoextend on next 5M;
3. 로그인 사용자를 생성
SQL> create user choi identified by choi default tablespace choiTS temporary tablespace temp;
4. 권한을 부여
choi 계정의 권한 : TESTDB접속 , object 생성 권한, DML권한 부여
SQL> grant create session, create table, resource, connect to choi;