|
¿î¿µÁßÀÌ½Ã¸é º°µµÀÇ Temporary Tablespace¸¦ »ý¼ºÇϽðí,
»ç¿ëÀÚ¿¡°Ô ÇÒ´çÇÏ°í ±âÁ¸ Tablespace¸¦ »èÁ¦ÇÏ½Ã¸é µË´Ï´Ù.
create temporary tablespace TEMP01
tempfile '/oradata/temp01_01.dbf' size 1G;
or
create tablespace TEMP01
datafile '/oradata/temp01_01.dbf' size 1G temporary;
alter user scott temporary tablespace TEMP01;
drop tablespace temp;
rm -f /oradata/temp01.dbf
|