2009. 11. 25. 11:19
-- Create new undo tablespace with smaller size.
SQL> create undo tablespace UNDO_RBS1 datafile 'undorbs1.dbf' size 100m;
-- Set new tablespace as undo_tablespace
SQL> alter system set undo_tablespace=undo_rbs1;
-- Drop the old tablespace.
SQL> drop tablespace undo_rbs0 including contents.
SQL> create undo tablespace UNDO_RBS1 datafile 'undorbs1.dbf' size 100m;
-- Set new tablespace as undo_tablespace
SQL> alter system set undo_tablespace=undo_rbs1;
-- Drop the old tablespace.
SQL> drop tablespace undo_rbs0 including contents.
'ORACLE' 카테고리의 다른 글
sql 고속화 기술3가지 (0) | 2010.02.09 |
---|---|
Oracle의 flashback 기능 (0) | 2009.12.23 |
IP정보를 고정길이로 변경하기 (0) | 2009.11.25 |
function 문자열이 숫자인지 검사하기. (0) | 2009.11.25 |
오라클 함수들 (0) | 2009.11.10 |