oracle重要初始引數

chuanzhongdu1發表於2011-09-28

OPEN_CURSORS session可以開啟的遊標最大數,依敕應用推薦500

show parameter open_cursors;

alter system set open-cursors=500 scope=both;

select count(*) from v$open_cursor;

CONTROL_FILES 控制檔案至少兩個檔案在不同磁碟,避免錯誤

show parameter control_files;

alter system set control_files = '/u01/control04.ctl','/u01/oracle/oradata/stone/control01.ctl','/u01/oracle/oradata/stone/control02.ctl' scope=spfile;

DB_FILES 分配給資料庫資料檔案的個數

show parameter db_files;

alter system set db_files=500 scope=both;

COMPATIBLE 相容性引數,設定版本號

show parameter compatible;

DB_BLOCK_SIZE 資料庫最小單元塊。

show parameter db_block_size;

SGA_TARGET 資料庫可動態分配的sga最大值,一般應該>=sga_max_size

show parameter sga_target;

PGA_AGGREGATE_TARGET 設定程式全域性區(PGA)大小,只在獨享模式中可以設定。

UNDO_MANAGEMENT undo表空間模式,oracle推薦

show parameter undo_management;

alter system set undo_management=auto scope=both;

UNDO_TABLESPACE 設定undo表空間

show parameter undo_tablespace;

alter system undo_tablespace=undotbs01 scope=spfile;

UNDO_RETENTION 撤消資料儲存的時間(以秒為單位)

show parmeter undo_retention;

alter system undo_retention=900 scope=spfile;

spfile指例項範圍

show parameter undo可以同時顯示undo表空間的這三個引數




相關文章