티스토리 뷰

Programming/Database

ORACLE TEMP TABLESPACE 삭제

다루사무 2023. 3. 20. 15:11
반응형
/*템프 테이블스페이스 조회*/
select * from dba_temp_files;


/*임시 템프 테이블스페이스 생성*/
create temporary tablespace TMP tempfile '/데이터파일경로/temp03.dbf' size 10m autoextend on;

/*기본 템프 테이블스페이스 변경*/
alter database default temporary tablespace tmp;


/*세션 확인 후 세션 킬*/
SELECT 'alter system kill session '''||sid||','||serial#||''' IMMEDIATE;'
FROM v$session a,v$sort_usage b
WHERE a.saddr = b.session_addr and tablespace = 'TEMP';

/*기존 템프 테이블스페이스 드랍*/
drop tablespace temp including contents and datafiles;

/*템프 테이블스페이스 생성*/
create temporary tablespace TEMP tempfile '/데이터파일경로/temp01.dbf' size 10m autoextend on;

/*기본 템프 테이블스페이스 변경*/
alter database default temporary tablespace temp;


/*세션 확인 후 세션 킬*/
SELECT 'alter system kill session '''||sid||','||serial#||''' IMMEDIATE;'
FROM v$session a,v$sort_usage b
WHERE a.saddr = b.session_addr and tablespace = 'TMP';

/*임시 템프 테이블스페이스 드랍*/
drop tablespace tmp including contents and datafiles;

 

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함