标签:test alter alt bsp 表空间 ase ace xxx file
一:问题分析
有可能是因为表空间大小不够造成在插入数据或者其他需要占用表空间大小的时候报错。
二:
1.查看表空间大小:select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;
2.查看表空间已使用大小及分配情况:
select SEGMENT_TYPE,owner,sum(bytes)/1024/1024 from dba_segments where tablespace_name=‘KPI_TEST‘
group by segment_type,owner
3.增加表空间大小:
查看表空间路径: select * from dba_data_files
增加表空间大小: alter tablespace KPI_TEST add datafile ‘F:\PROJECT\CRAZY-JOKER\DATABASE\KPI_TEST2.DMP‘ size 10M
ORA-01658:无法为表空间XXX中的段创建initial区
标签:test alter alt bsp 表空间 ase ace xxx file
原文地址:http://www.cnblogs.com/xiaoyueryeah/p/7117423.html