IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當前所在位置: 首頁數(shù)據(jù)庫Oracle → 六分鐘學(xué)會創(chuàng)建Oracle表空間的步驟

六分鐘學(xué)會創(chuàng)建Oracle表空間的步驟

時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)

  經(jīng)過長時間學(xué)習(xí)創(chuàng)建Oracle表空間,于是和大家分享一下,看完本文你肯定有不少收獲,希望本文能教會你更多東西。

  1、先查詢空閑空間

  1.select tablespace_name,file_id,block_id,bytes,blocks from dba_free_space;

  2、增加Oracle表空間

  先查詢數(shù)據(jù)文件名稱、大小和路徑的信息,語句如下:

  1.select tablespace_name,file_id,bytes,file_name from dba_data_files;

  3、修改文件大小語句如下

  1.alter database datafile

  2.'需要增加的數(shù)據(jù)文件路徑,即上面查詢出來的路徑

  3.'resize 800M;

  4、創(chuàng)建Oracle表空間

  1.create tablespace test

  2.datafile '/home/app/oracle/oradata/oracle8i/test01.dbf' size 8M

  3.autoextend on

  4.next 5M

  5.maxsize 10M;

  6.

  7.create tablespace sales

  8.datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M

  9.autoextend on

  10.next 50M

  11.maxsize unlimited

  12.maxsize unlimited 是大小不受限制

  13.

  14.create tablespace sales

  15.datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M

  16.autoextend on

  17.next 50M

  18.maxsize 1000M

  19.extent management local uniform;

  20.unform表示區(qū)的大小相同,默認為1M

  21.

  22.create tablespace sales

  23.datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M

  24.autoextend on

  25.next 50M

  26.maxsize 1000M

  27.extent management local uniform size 500K;

  28.unform size 500K表示區(qū)的大小相同,為500K

  29.

  30.create tablespace sales

  31.datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M

  32.autoextend on

  33.next 50M

  34.maxsize 1000M

  35.extent management local autoallocate;

  36.autoallocate表示區(qū)的大小由隨表的大小自動動態(tài)改變,大表使用大區(qū)小表使用小區(qū)

  37.

  38.create tablespace sales

  39.datafile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M

  40.autoextend on

  41.next 50M

  42.maxsize 1000M

  43.temporary;

  44.temporary創(chuàng)建字典管理臨時表空間

  45.

  46.create temporary tablespace sales

  47.tempfile '/home/app/oracle/oradata/oracle8i/sales01.dbf' size 800M

  48.autoextend on

  49.next 50M

  50.maxsize 1000M

  51.創(chuàng)建本地管理臨時表空間,如果是臨時表空間,所有語句中的datafile都換為tempfile

  52.

  53.8i系統(tǒng)默認創(chuàng)建字典管理臨時表空間,要創(chuàng)建本地管理臨時表空間要加temporary tablespace關(guān)鍵字

  54.創(chuàng)建本地管理臨時表空間時,不得使用atuoallocate參數(shù),系統(tǒng)默認創(chuàng)建uniform管理方式

  55.

  56.為表空間增加數(shù)據(jù)文件:

  57.alter tablespace sales add

  58.datafile '/home/app/oracle/oradata/oracle8i/sales02.dbf' size 800M

  59.autoextend on next 50M

  60.maxsize 1000M;

  創(chuàng)建本地管理臨時Oracle表空間,如果是臨時表空間,所有語句中的datafile都換為tempfile8i系統(tǒng)默認創(chuàng)建字典管理臨時表空間,要創(chuàng)建本地管理臨時表空間要加temporary tablespace關(guān)鍵字創(chuàng)建本地管理臨時表空間時,不得使用atuoallocate參數(shù),系統(tǒng)默認創(chuàng)建uniform管理方式

  為表空間增加數(shù)據(jù)文件:

  1.alter tablespace sales add

  2.datafile '/home/app/oracle/oradata/oracle8i/sales02.dbf' size 800M

  3.autoextend on next 50M

  4.maxsize 1000M;

  5、更改自動擴展屬性:

  1.alter database datafile

  2.'/home/app/oracle/oradata/oracle8i/sales01.dbf',

  3.'/home/app/oracle/oradata/oracle8i/sales02.dbf'

  4.'/home/app/oracle/oradata/oracle8i/sales01.dbf

  5.autoextend off;

  以上介紹創(chuàng)建Oracle表空間,在這里拿出來和大家分享一下,希望對大家有用。

關(guān)鍵詞標簽:創(chuàng)建Oracle表空間

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務(wù)器設(shè)置Oracle全文檢索 為UNIX服務(wù)器設(shè)置Oracle全文檢索

相關(guān)下載

    人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權(quán)語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法