ablog

不器用で落着きのない技術者のメモ

データファイルの自動拡張の ON/OFF の設定方法

  • 自動拡張を OFF にする。
alter database datafile '/export/home/oracle/oradata/orcl/users01.dbf' autoextend off;
  • 自動拡張を ON にする。
alter database datafile '/export/home/oracle/oradata/orcl/users01.dbf' autoextend on;
  • 自動拡張設定を確認する
col file_name for a70
col autoextensible for a3
select file_name,autoextensible from dba_data_files;