oracle重要初始参数

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)