1. 程式人生 > >表空間擴容

表空間擴容

dba 自動 database table 存在 order by size bsp 路徑

一.首先要查詢表空間在物理磁盤上存放的位置,註意使用sysdba.

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 表空間名 add datafile ‘數據文件路徑‘ size 32768M;

(2)給表空間增加數據文件,並允許數據文件自動增長.

alter tablespace 表空間名 add datafile ‘數據文件路徑‘ size 100M autoextend on next 100M maxsize 32768M;

(3)手工改變已存在數據文件大小

alter database datafile ‘已存在數據文件路徑及名稱‘ resize 32768M

(4)使已存在數據文件自動增長

alter database datafile ‘已存在數據文件路徑及名稱‘ autoextend on next 100M maxsize 32768M;

表空間擴容