반응형
1) Table space 생성
create tablespace OPPRA datafile '/oracle/SAFEDB/oradata/Ora10g/oppra.dbf' size 500m autoextend on next 100m maxsize 700m; create temporary tablespace OPPRATEMP tempfile '/oracle/SAFEDB/oradata/Ora10g/oppratemp.dbf' size 200m autoextend on next 100m maxsize 500m; |
2) 사용자 계정 생성
create user oppra identified by ocspgd default tablespace OPPRA temporary tablespace OPPRATEMP; |