TABLESPACE 썸네일형 리스트형 ORACLE TEMPORARY TABLESPACE의 특징 v1.0 출처 : ocmkorea (naver) ======================== temporary tablespace은 일반적인 테이블 스페이스와 다른 특징을 가진다 1. readonly 불가능 2. 항상 nologging 상태 3. temp file은 rename 불가능 4. read only database에서도 temp file 필요 각각을 확인하기 전에 우선 temporary tablespace를 확인해보자 이 테이블 스페이스는 dba_tablespaces, v$tablespace 에서 확인가능하다. 하지만 dba_data_files에서는 나타나지 않는다. SQL> get tbs2 1 select tablespace_name,status,logging 2* from dba_tablespaces.. 더보기 ORACLE create tablespace v1.1 이번엔 테이블스페이스 생성에 대해 알아보겠다. 우선 이 장에서는 local 방식에 대해서만 이야기 하겠다. 문법적인 구문은 create tablespace tablespace_name datafile 'file_path/file_name' size number(양의정수)[m/k] [REUSE], datafile 'file_path/file_name' size number(양의정수)[m/k] [REUSE], ... [minimum extent number[m/k]] [blocksize number[m/k]] [online | offline] [logging | nologging] [extent management dictionary | local [ autoallocate | uniform size num.. 더보기 이전 1 다음