一:问题分析

有可能是因为表空间大小不够造成在插入数据或者其他需要占用表空间大小的时候报错。

二:

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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-05
猜你喜欢
  • 2022-12-23
  • 2021-09-01
  • 2021-09-24
  • 2021-11-23
  • 2021-12-18
  • 2022-12-23
相关资源
相似解决方案