Unable to extend table in tablespace
包含表的表空间已满,无法分配下一个区。
SELECT tablespace_name, SUM(bytes)/1024/1024 free_mb FROM dba_free_space GROUP BY tablespace_name ORDER BY 2;SELECT file_name, tablespace_name, bytes/1024/1024 size_mb, autoextensible, maxbytes/1024/1024 max_mb FROM dba_data_files WHERE tablespace_name = 'TS_NAME';