Oracle 10g 如何檢視表空間及剩餘空間

2021-06-08 21:12:45 字數 2013 閱讀 8631

1.用sql語句:此語句是用toad 的sql monitor 工具追蹤提取的

select d.status "status",

d.tablespace_name "name",

d.contents "type",

d.extent_management "extent management",

to_char(nvl(a.bytes / 1024 / 1024, 0), '99,999,990.900') "size (m)",

to_char(nvl(a.bytes - nvl(f.bytes, 0), 0) / 1024 / 1024,

'99999999.999') || '/' ||

to_char(nvl(a.bytes / 1024 / 1024, 0), '99999999.999') "used (m)",

to_char(nvl((a.bytes - nvl(f.bytes, 0)) / a.bytes * 100, 0),

'990.00') "used %"

from sys.dba_tablespaces d,

(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) f

where d.tablespace_name = a.tablespace_name(+)

and d.tablespace_name = f.tablespace_name(+)

and not

(d.extent_management like 'local' and d.contents like 'temporary')

union all

select d.status "status",

d.tablespace_name "name",

d.contents "type",

d.extent_management "extent management",

to_char(nvl(a.bytes / 1024 / 1024, 0), '99,999,990.900') "size (m)",

to_char(nvl(t.bytes, 0) / 1024 / 1024, '99999999.999') || '/' ||

to_char(nvl(a.bytes / 1024 / 1024, 0), '99999999.999') "used (m)",

to_char(nvl(t.bytes / a.bytes * 100, 0), '990.00') "used %"

from sys.dba_tablespaces d,

(select tablespace_name, sum(bytes) bytes

from dba_temp_files

group by tablespace_name) a,

(select tablespace_name, sum(bytes_cached) bytes

from v$temp_extent_pool

group by tablespace_name) t

where d.tablespace_name = a.tablespace_name(+)

and d.tablespace_name = t.tablespace_name(+)

and d.extent_management like 'local'

and d.contents like 'temporary'

2 用enterprise manager 主控台

如何完全解除安裝Oracle 10g

解除安裝oracle 10g資料庫的過程不想解除安裝一般應用軟體那麼簡單,如果疏忽了一些步驟,就會在系統中留有安裝oracle資料庫的痕跡,從而占用系統資源或者影響系統的執行。可以按照如下步驟完全解除安裝oracle 10g資料庫。1 如果資料庫配置了自動儲存管理 asm 應該先刪除聚集同步服務cs...

oracle10g 解除安裝

1 oracle 10g解除安裝軟體環境 1 windows xp oracle 10g2 oracle 安裝路徑為 d oracle 實現方法 1 開始 設定 控制面板 管理工具 服務停止所有 oracle 服務 2 開始 程式 oracle oradb 10g home1 oracle inst...

Oracle10g解除安裝

一 軟體解除安裝 1 windows xp oracle 10g 2 oracle安裝路徑為 d oracle 1 如果資料庫配置了自動儲存管理 asm 應該先刪除聚集同步服務css cluster synchronization services 刪除css服務的方法是在dos命令列中執行如下命令...