經過長時間學習建立Oracle資料表空間,於是和大家分享一下,看完本文你肯定有不少收穫,希望本文能教會你更多東西。
1、先查詢空閑空間
複製代碼 代碼如下:select tablespace_name,file_id,block_id,bytes,blocks from dba_free_space;
2、增加Oracle資料表空間
先查詢資料檔案名稱、大小和路徑的資訊,語句如下:
複製代碼 代碼如下:select tablespace_name,file_id,bytes,file_name from dba_data_files;
3、修改檔案大小語句如下
複製代碼 代碼如下:alter database datafile
'需要增加的資料檔案路徑,即上面查詢出來的路徑
'resize 800M;
4、建立Oracle資料表空間
複製代碼 代碼如下:create tablespace test
datafile '/home/app/oracle/oradata/oracle8i/test01.dbf' size 8M
autoextend on
next 5M
maxsize 10M;
create tablespace sales
datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M
autoextend on
next 50M
maxsize unlimited
maxsize unlimited 是大小不受限制
create tablespace sales
datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M
autoextend on
next 50M
maxsize 1000M
extent management local uniform;
unform表示區的大小相同,預設為1M
create tablespace sales
datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M
autoextend on
next 50M
maxsize 1000M
extent management local uniform size 500K;
unform size 500K表示區的大小相同,為500K
create tablespace sales
datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M
autoextend on
next 50M
maxsize 1000M
extent management local autoallocate;
autoallocate表示區的大小由隨表的大小自動動態改變,大表使用大區小表使用小區
create tablespace sales
datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M
autoextend on
next 50M
maxsize 1000M
temporary;
temporary建立字典管理暫存資料表空間
create temporary tablespace sales
tempfile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M
autoextend on
next 50M
maxsize 1000M
建立本地管理暫存資料表空間,如果是暫存資料表空間,所有語句中的datafile都換為tempfile
8i系統預設建立字典管理暫存資料表空間,要建立本地管理暫存資料表空間要加temporary tablespace關鍵字
建立本地管理暫存資料表空間時,不得使用atuoallocate參數,系統預設建立uniform管理方式
為資料表空間增加資料檔案:
alter tablespace sales add
datafile '/home/app/oracle/oradata/oracle8i/sales02.dbf' size 800M
autoextend on next 50M
maxsize 1000M;
建立本地管理臨時Oracle資料表空間,如果是暫存資料表空間,所有語句中的datafile都換為tempfile8i系統預設建立字典管理暫存資料表空間,要建立本地管理暫存資料表空間要加temporary tablespace關鍵字建立本地管理暫存資料表空間時,不得使用atuoallocate參數,系統預設建立uniform管理方式
為資料表空間增加資料檔案:
複製代碼 代碼如下:alter tablespace sales add
datafile '/home/app/oracle/oradata/oracle8i/sales02.dbf' size 800M
autoextend on next 50M
maxsize 1000M;
5、更改自動擴充屬性:
複製代碼 代碼如下:alter database datafile
'/home/app/oracle/oradata/oracle8i/sales01.dbf',
'/home/app/oracle/oradata/oracle8i/sales02.dbf'
'/home/app/oracle/oradata/oracle8i/sales01.dbf
autoextend off;
以上介紹建立Oracle資料表空間,在這裡拿出來和大家分享一下,希望對大家有用。