oracle重要初始引數

2021-08-31 19:27:42 字數 1264 閱讀 5900

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

show parameter open_cursors;

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

selectcount(*)fromv$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表空間的這三個引數

Oracle初始化引數檔案

oracle9i以前只有乙個文字初始化引數檔案,在oracle9i中增加了乙個伺服器引數檔案spfile,該檔案位於 oralce home database 目錄下,預設檔名spfile sid ora。在啟動資料庫例項時spfile比傳統的pfile優選,spfile是二進位制檔案不能通過文字形...

ORACLE初始化引數 AUDIT TRAIL

oracle初始化引數 audit trail audit trail 初始化引數audit trail用於控制資料庫審計,預設值為none。引數型別 string 預設值 none 允許動態修改 否基本引數 否語法 audit trail 引數詳解 audit trail啟用或禁用資料庫審計。當設...

Oracle恢復管理之重要引數DBID

oracle恢復管理之重要引數dbid dbid,是資料庫識別符號。每個資料庫都擁有乙個編號,稱為資料庫識別符號 dbid 該編號是在建立資料庫時自動生成的,且oracle不保證兩個同名的資料庫的dbid必然唯一的。所以oracle提供 oracle home bin nid命令,該命令能夠在修改資...