TABLESPACE 및 사용자 계정 생성 방법

DATABASE/ORACLE 2013. 6. 26. 14:41

-- 테이블스페이스 정보 조회

select * from dba_data_files; 
select * from dba_tablespaces;

 

1) Table space 생성

create tablespace [tablespace name]

datafile '/oracle/SAFEDB/oradata/Ora10g/oppra.dbf' 

size 500m 

autoextend on 

next 100m 

maxsize 700m;

 

create temporary tablespace [temp tablespace name]

tempfile '/oracle/SAFEDB/oradata/Ora10g/oppratemp.dbf' 

size 200m 

autoextend on 

next 100m 

maxsize 500m;


2) 사용자 계정 생성

 

 

create user [user name] identified by [password] 

default tablespace [tablespace name]

temporary tablespace [temp tablespace name];


3)사용 권한 주기

grant connect to [user_name];

grant resource to [user_name];

: