col file_name format a50
col tablespace_name format a10
SELECT file_name, tablespace_name, (bytes/1024 * 1024) MB
FROM dba_data_files
ORDER BY 1;
Set autoextend on for the datafile associated with required tbsp:
alter database datafile
'/u01/app/oracle/ts_32k.dbf'
autoextend on;
More info about tbspc: http://psoug.org/snippet/TABLESPACE--List-tablespaces-files-allocated-and-free-space_852.htm
No comments:
Post a Comment