-- tablespace내 파일들의 자동확장 상태확인
SELECT tablespace_name , file_name, autoextensible FROM DBA_DATA_FILES ;
-- dbf 파일의 크기를 GB로 확인
SELECT tablespace_name,file_name,bytes/1024/1024/1024 GB,status FROM DBA_DATA_FILES ;
-- dbf 파일의 크기를 확장하기 위해사용
alter DATABASE datafile '/ora_data/KJUCITY/ucity33.dbf' resize 30G
-- tablespace내에 dbf파일 하나더 추가.
alter tablespace UCITY add datafile '/ora_data/KJUCITY/ucity34.dbf' size 30G;
|