Oracle10g BIGFILE表空間帶來的好處

2021-08-22 15:25:36 字數 738 閱讀 9071

oracle10g引進了乙個新的表空間型別(bigfile)。它不像傳統的表空間那樣最多由1022個檔案組成;乙個bigfile表空間只包含乙個資料檔案,根據選擇的塊的大小,最大從32tb至128tb。

bigfile帶來的最大好處就是管理上的簡化,可以使用alter tablespace進行表空間的管理,比如:

sql>create bigfile tablespace test_big datafile 'f:oracleproductoradatatesttest_big.dbf' size 10m;

tablespace created.

sql>alter tablespace test_big resize 1m;

tablespace altered.

普通(smallfile)表空間是不可以這樣管理的

sql>alter tablespace users resize 1m;

alter tablespace users resize 1m

* error at line 1:

ora-32773: operation not supported for smallfile tablespace users

bigfile感覺違背了oracle一直提倡的使用放在不同磁碟上的多個檔案分散表空間io的做法,但是oracle10g同時提出的asm正好解決了這個問題。bigfile+asm在簡化操作的同時,實現了資料的條帶化分布。

本文**

oracle新手隨記10

1.unpivot注意點 select new col from select ename,job,to char sal as sal,null as c from emp unpivot include nulls new col for old col in ename,job,sal,c 1...

oracle10g 解除安裝

1 oracle 10g解除安裝軟體環境 1 windows xp oracle 10g2 oracle 安裝路徑為 d oracle 實現方法 1 開始 設定 控制面板 管理工具 服務停止所有 oracle 服務 2 開始 程式 oracle oradb 10g home1 oracle inst...

oracle10g dbconsole 重建步驟

oracle10g dbconsole 重建步驟 當安裝oracle的機器變了機器名,或者變了ip位址。那麼原來的dbconsole就起不來了。當在dos下執行 emctl start dbconsole 的時候報錯。解決辦法 搜尋自 同樣適用於windows,unix,linux其他原因導致dbc...