본문 바로가기
개발언어/SQL

[ORACLE] Table space 및 사용자 계정 생성 방법

by 엔돌슨 2008. 7. 11.
반응형

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;