using by user.

--1. 만들기

S SYS> create temporary tablespace temp2;

Tablespace created.

 

--2. 적용.

S SYS> alter user hr temporary tablespace temp2;

User altered.

 

--3. 적용 확인

S SYS> select username, temporary_tablespace from dba_users where username='HR';

USERNAME                              TEMPORARY_TABLESPACE
------------------------------ ------------------------------
HR                                           TEMP2

 

 

--4. 사용중인 모든 temp t/s 목록

S SYS> select distinct temporary_tablespace from dba_users;

TEMPORARY_TABLESPACE
------------------------------
TEMP
TEMP2

'DataBase > Oracle' 카테고리의 다른 글

PL/SQL 기초 사용 예  (0) 2010.05.28
싱글 인덱스와 결합 인덱스 쿼리 속도차이  (0) 2010.05.27
Tablespace 사용량 체크  (0) 2010.05.18
DataBase 메모리 보기  (0) 2010.05.18
CUBE 사용예  (0) 2010.05.18

+ Recent posts