檢視資料庫建立了哪些表空間oracle

時間 2021-08-11 18:15:23

1樓:匿名使用者

檢視oracle中表空間需要用具有dba許可權的使用者使用以下語句:

select distinct tablespace_name from dba_data_files;

查詢結果:

另外,可通過其他方法檢視一下oracle中表空間的使用率,語句如下:

select total.tablespace_name,

round(total.mb, 2) as total_mb,

round(total.mb - free.mb, 2) as used_mb,

round((1 - free.mb / total.mb) * 100, 2) || '%' as used_pct

from (select tablespace_name, sum(bytes) / 1024 / 1024 as mb

from dba_free_space

group by tablespace_name) free,

(select tablespace_name, sum(bytes) / 1024 / 1024 as mb

from dba_data_files

group by tablespace_name) total

where free.tablespace_name = total.tablespace_name

order by used_pct desc;

查詢結果:

2樓:杜爺1號

select table_name ,tablespace_name from dba_tables where tablespace_name = '表空間名';

需要dba許可權

select table_name ,tablespace_name from user_tables where tablespace_name = '表空間名';

只查當前使用者的不需dba許可權。

oracle怎麼查詢所有的表空間的名稱?

3樓:匿名使用者

oracle資料庫中,查詢素有表空間的名稱只需要一條sql語句即可:

select tablespace_name  from user_tablespaces;

結果輸出如下圖:

在上式的sql中,“user_tablespaces”即為表空間資訊所在表,所需的表空間資訊需要從該表中獲取,“tablespace_name”即為表空間名稱,

select * from user_tablespaces;

結果輸出如下:

擴充套件資料:

針對表空間,還有其他的查詢可供參考:

1、檢視錶空間的名稱及對應大小

select t.tablespace_name, round(sum(bytes / (1024 * 1024)), 0) ts_size from

dba_tablespaces t, dba_data_files d where t.tablespace_name =

d.tablespace_name group by t.tablespace_name;

輸出結果如下:

2、檢視錶空間物理檔案的名稱及大小

select tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0) total_space

from dba_data_files order by tablespace_name;

輸出結果為:

3、查詢當前使用者所有表名及其所屬表空間

select table_name 表名 ,tablespace_name 所使用表空間 from user_tables;

輸出結果為:

4樓:匿名使用者

只查詢名字的話用如下語句:

select tablespace_name from dba_tablespaces;

表空間含義:

表空間是資料庫的邏輯劃分,一個表空間只能屬於一個資料庫。所有的資料庫物件都存放在指定的表空間中。但主要存放的是表, 所以稱作表空間。

oracle資料庫中至少存在一個表空間,即system的表空間。

5樓:匿名使用者

很簡單,查 dba_tablespaces 資料字典:

select tablespace_name from dba_tablespaces;

6樓:匿名使用者

select

b.file_name 物理檔名,

b.tablespace_name 表空間,

b.bytes/1024/1024 大小m,

(b.bytes-sum(nvl(a.bytes,0)))/1024/1024 已使用m,

substr((b.bytes-sum(nvl(a.bytes,0)))/(b.bytes)*100,1,5) 利用率

from dba_free_space a,dba_data_files b

where a.file_id=b.file_id

group by b.tablespace_name,b.file_name,b.bytes

order by b.tablespace_name

7樓:匿名使用者

select distinct tablespace_name from dba_data_files;

select distinct tablespace_name from dba_temp_files;

怎樣查詢oracle資料庫中所有的表空間

8樓:匿名使用者

oracle中查詢當前資料庫中的所有表空間和對應的資料檔案語句命令

1、在cmd中輸入sqlplus,彈出命令列窗體

2、輸入口令和密碼

3、sql>col file_name for a60;

4、sql>set linesize 160;

5、sql>select file_name,tablespace_name,bytes from dba_data_files;

同樣的可以從dba_temp_files資料字典中查詢臨時表空間的資訊

sql>select tablespace_name,file_name from dba_temp_files;

刪除oracle表空間與表空間檔案語句如下:

sql>drop tablespace 表空間名稱 including contents and datafiles ;

示例:--刪除oracle表空間和檔案的語句命令

drop tablespace 表空間名稱 including contents and datafiles cascade constraints;

--including contents 刪除表空間中的內容

--datafiles 刪除表空間中的資料檔案

--cascade constraints 刪除所有與表空間資料有關的級聯,如主外來鍵等

oracle 怎麼檢視一個資料庫中有幾個表空間?以及這些表空間的名字?

9樓:穀梁秀梅接霜

檢視錶空間名字

select

distinct

tablespace_name

from

tabs

檢視幾個表空間

select

count(distinct

tablespace_name)

from

tabs

我是偷學的,哈哈

oracle 怎麼檢視一個資料庫中有幾個表空間

10樓:匿名使用者

select t.tablespace_name,round(sum(bytes / (1024 * 1024)), 0) ts_size

from dba_tablespaces t, dba_data_files d

where t.tablespace_name = d.tablespace_name

group by t.tablespace_name;

sqlite資料庫 判讀是否已經建立了

int month day int year,int month 判斷這一個月有多少天。初始化每個月的天數。elsereturn mon day month 1 如何判斷sqlite資料庫是否已經關閉 關於資料庫控制代碼,每次用完是必須手動呼叫close 方法關掉的 關於cursor一般情況也是要求...

oracle怎樣檢視資料庫中有資料的表

千鋒教育 select from all tables all tables是所有能訪問,包括其它使用者的,如果要檢視當前使用者用user tables 超級喵公主 覺得你應該先弄清楚oracle的常規資料字典的結構,像9i裡的常規資料字典中物件名稱就有以user,all,dba為字首的物件。以us...

oracle資料庫建立表時,int型資料為何報錯

oracle資料庫中是有int型的,你在建立表的時候,使用int型報錯,可能的原因是你為int型增加了精度,如int 10 或者是你的oracle 版本過低造成的。在oracle中int型與integer型都是number型別的子型別,int是integer 的簡寫,相當於number 38 是為了...