테이블 스페이스 생성
 
create tablespace 테이블이름
datafile  '파일넣은장소.dbf' SIZE 250M REUSE
AUTOEXTEND ON
NEXT  10240K
MAXSIZE
UNLIMITED
EXTENT MANAGEMENT LOCAL
online

desc dba_tablespaces;    
select tablespace_name from dba_tablespaces; (테이블 스페이스 생성확인)
 
 
 
사용자 생성
 
create user 사용자이름 identified by 비번
default tablespace 테이블스페이스 이름
temporary tablespace temp
 

select username,default_tablespace,temporary_tablespace from dba_users;
(생성 확인)
 
 
접속 권한

grant connect,resource to test (접속과 데이터 권한 부여)
Posted by 용학도리
,