首先檢視表空間的名字和所屬檔案
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name;
1.增加資料檔案
alter tablespace ultimusdb
add datafile '/oracle/oradata/db/ultimusdb02.dbf' size 1000m;
2.手動增加資料檔案尺寸
alter database datafile '/oracle/oradata/db/ultimusdb.dbf' resize 4000m;
3.設定資料檔案自動擴充套件
alter database datafile '/oracle/oradata/db/ultimusdb.dbf'
autoextend on next 100m
maxsize 10000m;
Oracle的表空間操作
1.建立表空間的語法是 create tablespace 表空間名 datafile 表空間檔名 包括路徑,擴充套件名為dbf,比如 ts.dbf size integer k m autoextend off on 2.檢視所有的表空間 sql select tablespace name fr...
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...