#####################################
#  TEMPORARY TABLESPACE Á¦°ÅÇ챉    # 
#####################################

ÀÛ¼ºÀÚ : ÀåÇüÈ­(hhjang97@venus.uos.ac.kr)
ÀÛ¼ºÀÏ : 2005. 09. 22 
¼öÁ¤ÀÏ : 

¿øº» :
¼³¸í :

»ç¿ëÇÏÁö ¾Ê´Â temporay tablespace ¸¦ Á¦°ÅÇÑ´Ù.

################################# ################################# #################################

#### temporary tablespace ÆÄÀÏ È®ÀÎ
SQL> select FILE#,NAME from v$tempfile;
or
SQL> select file_name, tablespace_name from dba_temp_files;



#################################
# TEMPORARY TABLESPACE Á¦°ÅÇϱâ 
#################################

TEMP_WEBTEMP¸¦ »èÁ¦ÇÏ´Â °æ¿ì

## Àӽà tablespace È®ÀÎ
  temporary tablespace¸¦ »ç¿ëÇÏ°í Àִ°æ¿ì¿¡´Â ¹Ù·Î Á¦°ÅÇÒ ¼ö ¾ø´Ù.

SQL> select file_name, tablespace_name from dba_temp_files;
SQL> SELECT default_tablespace, temporary_tablespace from dba_users
     where temporary_tablespace='TEMP_WEBTEMP';
==> °á°ú°¡ ¾ø´Â°æ¿ì »èÁ¦

SQL> DROP TABLESPACE TEMP_WEBTEMP including contents and datafiles

==> °á°ú°¡ Àִ°æ¿ì dba_users ÀÇ Àӽà Å×À̺íÀ» º¯°æÈÄ »èÁ¦ ÇØ¾ß µÈ´Ù.



#################################
# 
#################################