多谢。

解决方案 »

  1.   

    假设你的表为table1,可以通过
    select sum(bytes/1024/1024) from dba_segments where segment_name='TABLE1';
    结果显示的是表的大小(m).另外假设表所在的表空间为tablespace1,可以通过增加数据文件来增大表空间(必须以管理员身份登陆).
    alter tablespace tablespace1 add datafile '*.dbf' size 1024m;
    其中‘*’可以填写你要增加的数据文件名字(需要带上路径)如果想查看表空间还有多少可用空间。可以执行下面语句:
    select tablespace_name,sum(bytes/1024/1024) 剩余空间(m) from dba_free_space group by tablespace_name;