Oracle的表空間操作

2021-06-18 16:39:59 字數 700 閱讀 8435

1. 建立表空間的語法是

create tablespace 表空間名 datafile '表空間檔名(包括路徑,擴充套件名為dbf,比如 /.../ts.dbf)' [size integer [k|m]] [autoextend [off|on]];

2. 檢視所有的表空間

sql> select tablespace_name from dba_data_files order by tablespace_name;

3. 檢視表空間的名字及大小

sql> 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;

4. 檢視表空間的大小

sql> select tablespace_name,sum(bytes)/1024/1024 mb from dba_free_space group by tablespace_name;

5. 檢視表空間中資料檔案存放的路徑

sql> select tablespace_name, bytes/1024/1024 file_size_mb, file_name from dba_data_files;

Oracle 表空間 的操作

首先檢視表空間的名字和所屬檔案 select tablespace name,file id,file name,round bytes 1024 1024 0 total space from dba data files order by tablespace name 1.增加資料檔案 alt...

oracle表空間操作

建立表空間 oracle中的tablespace 表空間 就相當於sqlserver的database create tablespace data01 datafile d oracle ora92 oradata db data01.dbf size 200m uniform size 128k...

Oracle 表空間操作

建立表空間 create temporary tablespace tablespace name tempfile datafile 表空間中資料檔名 xx.dbf size 資料檔案大小 xx datafile 表空間中資料檔名,沒有指定路徑則預設安裝在oracle安裝目錄下 temporary...