無法通過128擴充套件temp段

2021-05-28 08:24:26 字數 1626 閱讀 3797

1.檢視表空間使用率(包括臨時表空間)

select * from (

select a.tablespace_name,

to_char(a.bytes/1024/1024,'99,999.999') total_bytes,

to_char(b.bytes/1024/1024,'99,999.999') free_bytes,

to_char(a.bytes/1024/1024 - b.bytes/1024/1024,'99,999.999') use_bytes,

to_char((1 - b.bytes/a.bytes)*100,'99.99') || '%' use

from (select tablespace_name,

sum(bytes) bytes

from dba_data_files

group by tablespace_name) a,

(select tablespace_name,

sum(bytes) bytes

from dba_free_space

group by tablespace_name) b

where a.tablespace_name = b.tablespace_name

union all

select c.tablespace_name,

to_char(c.bytes/1024/1024,'99,999.999') total_bytes,

to_char( (c.bytes-d.bytes_used)/1024/1024,'99,999.999') free_bytes,

to_char(d.bytes_used/1024/1024,'99,999.999') use_bytes,

to_char(d.bytes_used*100/c.bytes,'99.99') || '%' use

from

(select tablespace_name,sum(bytes) bytes

from dba_temp_files group by tablespace_name) c,

(select tablespace_name,sum(bytes_cached) bytes_used

from v$temp_extent_pool group by tablespace_name) d

where c.tablespace_name = d.tablespace_name

)order by tablespace_name

2.檢視檔案是否自動擴充套件

select d.file_name,d.tablespace_name,d.autoextensible from dba_data_files d

如果想檢視臨時表空間檔案是否自動擴充套件

select d.file_name,d.tablespace_name,d.autoextensible from dba_temp_files d;

3.在檢查表檔案時 發現 表空間escalade使用率接近100%,且不可擴充套件

修改檔案自動可擴充套件性

alter database datafile 'e:******escalade.ora' autoextend on;

4.重建索引就可以了

ORA 01691 Lob 段 無法通過8192

users表空間不足的問題 描述 ora 01691 lob 段sfzxp.sys lob0000030381c00004 無法通過8192 在表空間users中 擴充套件。下面的方法是為表空間增加乙個 d oracle product 10.2.0 oradata orcl users02.dbf...

無法通過8192在表空間中擴充套件

今天在oracle資料庫表裡面刪除資料的時候,彈框提示說 無法通過8192在表空間中擴充套件 發現增刪改都會提示這個問題,這下就鬱悶了。最後請教了下公司的老前輩才知道了是資料庫的表空間不夠了,後來在老前輩的指導下將這個問題解決了,現在將解決辦法記錄下來。1.找到資料庫裡面相應的表空間的相應dbf檔案...

無法通過8192在表空間中擴充套件

oracle資料庫表裡面增加幾百萬資料的時候,彈框提示說 無法通過8192在表空間中擴充套件 發現增刪改都會提示這個問題,這下就鬱悶了。原因是資料庫的表空間容量不夠了。1.找到資料庫裡面相應的表空間的相應dbf檔案,比如表空間名字叫wibp,相應的dbf檔案為wibp zyml.dbf,wibp z...