ORA-01653 unable to extend table string.string by string in tablespace string
Cause: Failed to allocate an extent for table segment in tablespace. Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more files to the tablespace indicated表空间不够了! 增大tablespace JNPOWER .
可能你导入的数据量太大.

解决方案 »

  1.   


    --查看一下JNPOWER表空间的剩余空间
     select sum(bytes) from dba_free_spaces 
       where tablespace_name='JNPOWER' 如果剩余空间确实不够,需要增加表空间容量. 第二种原因: 表空间的剩余空间是足够的,但是碎片比较多.
       1. 作一次导出,加上compress=y这个参数,然后再导入
       2. 手工清理:
          如果是本地表空间管理的(LMT),基本不需要做;
          如果是字典管理的,执行alter tablespace JNPOWER coalesce
      

  2.   

    上面写错了: dba_free_spaces 改成dba_free_space.
      

  3.   

    1。看看表空间大小
    2。检查用户权限(select all tables...)