六分鐘學會建立Oracle資料表空間的實現步驟

來源:互聯網
上載者:User

經過長時間學習建立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資料表空間,在這裡拿出來和大家分享一下,希望對大家有用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.