Oracle表空間擴容
Oracle表空間擴容
1 建立表空間
SQL> create tablespace my_01 logging datafile '/oracle/app/oradata/mytablespace/my_01.dbf' size 128M;
表空間已建立。
在表空間上建立表
SQL> create table t1 (id int) tablespace my_01;
表已建立。
插入資料
SQL> insert into t1 values(10);
已建立 1 行。
2 表空間擴容
方法一:改變資料檔案的大小
SQL> alter database datafile '/oracle/app/oradata/mytablespace/my_01.dbf' resize 256M;
資料庫已更改。
驗證:
SQL> select bytes/1024/1024, tablespace_name from dba_data_files where tablespace_name='MY_01';
BYTES/1024/1024 TABLESPACE_NAME
--------------- ---------------
256 MY_01
SQL> select table_name from dba_tables where tablespace_name='MY_01';
TABLE_NAME
------------------------------
T1
SQL> select * from t1;
ID
----------
10
方法二:新增資料檔案
SQL> alter tablespace my_01 add datafile '/oracle/app/oradata/mytablespace/my_02.dbf' size 128M;
表空間已更改。
驗證:
SQL> select sum(bytes)/1024/1024, tablespace_name from dba_data_files where tablespace_name='MY_01' group by tablespace_name;
SUM(BYTES)/1024/1024 TABLESPACE_NAME
-------------------- ---------------
384 MY_01
SQL> select table_name from dba_tables where tablespace_name='MY_01';
TABLE_NAME
------------------------------
T1
SQL> select * from t1;
ID
----------
10
3 檢視錶空間大小和使用率
select
a.tablespace_name, total, free, total-free as used, substr(free/total * 100, 1,
5) as "FREE%", substr((total - free)/total * 100, 1, 5) as
"USED%" from
(select tablespace_name, sum(bytes)/1024/1024 as total from dba_data_files
group by tablespace_name) a,
(select tablespace_name, sum(bytes)/1024/1024 as free from dba_free_space group
by tablespace_name) b
where a.tablespace_name = b.tablespace_name
order by a.tablespace_name;
TABLESPACE_NAME TOTAL FREE USED FREE% USED%
--------------- ---------- ---------- ---------- ---------- ----------
MY_01 384 381.9375 2.0625 99.46 .5371
QUR_DT01 128 126.9375 1.0625 99.16 .8300
QUR_DT02 128 126.9375 1.0625 99.16 .8300
QUR_DT03 128 126.9375 1.0625 99.16 .8300
QUR_DT04 128 126.9375 1.0625 99.16 .8300
QUR_IDX01 128 126.9375 1.0625 99.16 .8300
QUR_IDX02 128 126.6875 1.3125 98.97 1.025
QUR_IDX03 128 126.9375 1.0625 99.16 .8300
QUR_IDX04 128 126.9375 1.0625 99.16 .8300
SYSAUX 500 31.5625 468.4375 6.312 93.68
SYSTEM 680 8.625 671.375 1.268 98.73
UNDOTBS1 75 10.375 64.625 13.83 86.16
USERS 5 3.6875 1.3125 73.75 26.25
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29485627/viewspace-1280367/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle RAC+DG 表空間擴容Oracle
- 華納雲:如何配置oracle表空間自動擴容?Oracle
- Brtools擴oracle表空間Oracle
- oracle RAC+DG 擴容ASM和表空間(Linux)OracleASMLinux
- mysql共享表空間擴容,收縮,遷移MySql
- 資料庫表空間不夠,需要擴容資料庫
- oracle UNDO表空間一個bug——undo表空間快速擴充套件Oracle套件
- Ubuntu空間不足,如何擴容Ubuntu
- 擴充套件表空間套件
- AIX 5.3 10.2g rac環境下 給表空間擴容(裸裝置表空間)AI
- 達夢資料庫DSC架構下ASM擴容及表空間擴容實施資料庫架構ASM
- Oracle表空間Oracle
- oracle 表空間Oracle
- Oracle 擴充磁碟空間Oracle
- Ubuntu 22.04擴容LVM空間UbuntuLVM
- Oracle 10g 物理DataGuard擴充套件表空間Oracle 10g套件
- 建立表空間、使用者、擴容、移動資料檔案
- oracle temp 表空間Oracle
- 增加oracle表空間Oracle
- oracle undo 表空間Oracle
- oracle users 表空間Oracle
- Oracle表空間管理Oracle
- oracle建立表空間Oracle
- Oracle 表空間管理Oracle
- oracle表空間操作Oracle
- ORACLE MOVE表空間Oracle
- ORACLE表空間概述Oracle
- Oracle表空間命令Oracle
- Oracle 表空間回收Oracle
- Oracle表移動表空間Oracle
- oracle 表移動表空間Oracle
- 在sun solaris suncluster and volume manger環境下的ORACLE資料庫表空間的擴容Oracle資料庫
- oracle表空間的整理Oracle
- Oracle 批量建表空間Oracle
- Oracle清理SYSAUX表空間OracleUX
- Oracle undo 表空間管理Oracle
- oracle表空間查詢Oracle
- Oracle 表空間傳輸Oracle