oracle建表后添加数据报错:ORA-01658:无法为表空间中的段创建INITIAL区
生活随笔
收集整理的這篇文章主要介紹了
oracle建表后添加数据报错:ORA-01658:无法为表空间中的段创建INITIAL区
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
看到這個,是表空間不足咧。
首先呢,我看了下建表時的表空間分配大小,分的挺多了64M,不行,改掉改成64k,ok啦。
別的表也報錯。糾結了,決定給表空間大小改了。
1、先看下我的表空的位置
select tablespace_name, file_id, file_name, round(bytes/(1024*1024),0) total_space from dba_data_files order by tablespace_name 找到我的表空間位置。2、修改表空間大小
alter database datafile 'health.dbf' resize 4000m
ok啦。
3、其他方法:未驗證。。。
方法一:增加數(shù)據(jù)文件個數(shù) alter tablespace 表空間名稱
???? add datafile '新的數(shù)據(jù)文件地址' size 數(shù)據(jù)文件大小 例如: alter tablespace ESPS_2008
???? add datafile '\oracle\oradata\anita_2010.dbf' size 1000m 方法二:設置表空間自動擴展。 alter database datafile '數(shù)據(jù)文件位置'
???? autoextend on next?自動擴展大小 maxsize 最大擴展大小 例如: alter database datafile '\oracle\oradata\anita_2008.dbf' autoextend on next 100m maxsize 10000m ? 方法三:查詢表空間使用情況: select a.tablespace_name,a.bytes/1024/1024 "sum MB", (a.bytes-b.bytes)/1024/1024 "used MB",b.bytes/1024/1024 "free MB", round (((a.bytes-b.bytes)/a.bytes)*100,2) "used%" from (select tablespace_name,sum(bytes) bytes from dba_data_files group by tablespace_name) a, (select tablespace_name,sum(bytes) bytes,max (bytes) largest from dba_free_space group by tablespace_name)b where a.tablespace_name=b.tablespace_name order by ((a.bytes-b.bytes)/a.bytes) desc;
總結
以上是生活随笔為你收集整理的oracle建表后添加数据报错:ORA-01658:无法为表空间中的段创建INITIAL区的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: pl/sql链接64位oracle数据库
- 下一篇: java Jconsole调优