网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
本月文章推荐
.RED HAT 7.2H 上安装ORACLE 8i.
.Oracle数据库导入导出方法的个人.
.Linux x86安装Oracle数据库10g一.
.Oracle数据库回滚段表空间文件丢.
.[Oracle技术]ITPUB电子杂志第七期.
.关于用户进程,服务进程,后台进.
.创建镜像备份数据库.
.创建一个Oracle 数据库.
.关于exchange partition.
.实例讲解如何通过Oracle成功发送.
.Linux 进程调度原理.
.提高Oracle数据库系统Import的性.
.读书总结:Oracle 软件结构.
.Oracle不同版本间用exp进行导数据.
.Oracle9i初始化参数中文说明(5).
.Chapter1:Oracle 10g Oracle DAB.
.Oracle弱智900问七.
.Oracle网格计算中文资料—射频识.
.ORACLE中的物化视图.
.在Oracle数据库10g中跟踪SQL.

Oracle 未写入文档的参数介绍

发表日期:2008-2-9



  有许多的的未写入文档的参数其实在实际应用中也是委重要的,有时当你碰到一个corrupt,你去问Oracle,oracle也许会说这个无能为力了,其实他们是有办法的,这其中就有这些内部参数的作用。
  
  1、你用sys连入oracle,执行如下的sql语句,你可以看到有哪些未写入文档的参数
  
   select
  
    a.ksppinm "Parameter",
  
    a.ksppdesc "Description",
  
    b.ksppstvl "Session Value",
  
    c.ksppstvl "Instance Value"
  
   from
  
    x$ksppi a,
  
    x$ksppcv b,
  
    x$ksppsv c
  
   where a.indx = b.indx
  
    and a.indx = c.indx
  
    and a.ksppinm like '/_%' escape '/'
  
   order by 1
  
  2、也并不是所有的都是有用的,有些还是有害的,下面介绍14个有用的。
  
  3、美国闻名oracle专家Rich Niemiec有14个非凡喜欢的undocument parameter,我把原文引入如下:
  
   a、_ALLOW_RESETLOGS_CORRUPTION -- May be only way to start a db backed up
  
  open without setting backup on tablespaces, will result in unsupported system. See the
  
  detailed section for how to use this in a recovery situation.
  
   b、_CORRUPTED_ROLLBACK_SEGMENTS -- Only way to startup with corrupted public
  
  rollback segments. Can be used without fear of desupport.
  
   c、_ALLOW_READ_ONLY_CORRUPTION – Allows you to open a database even if it has
  
  corruption. This should only be used to eXPort as mUCh data from a corrupted database
  
  as is possible before recreating a database. You should not use a database for normal
  
  use that has been opened in this manner as it will not be supported.
  
   d、_SPIN_COUNT -- Sets the number of spins a process will undergo before trying to get a
  
  latch. If CPU is not fully loaded a high value may be best, for a fully loaded CPU a
  
  smaller value may help. Usually defaults to 2000. Can be changed without fear of
  
  desupport. This parameter flips from being undocumented to documented depending on
  
  database version.
  
   e、_LOG_ENTRY_PREBUILD_THRESHOLD – This parameter was documented at one
  
  time, now it is undocumented. It is the minimum size of entry in blocks that will be prebuilt
  
  for redo log entries, usually set to 30.
  
   f、_LATCH_SPIN_COUNT -- Shows how often a latch request will be taken
  
   g、_DB_BLOCK_WRITE_BATCH – This parameter was documented at one time, but is now
  
  undocumented. It is the number of blocks that the db writers will write in each batch,
  
  defaults to 512 or DB_FILES*DB_FILE_SIMULTANEOUS_WRITES/2 up to a limit of ¼

  
  of the value of DB_BLOCK_BUFFERS.
  
   h、_CPU_COUNT – This is another parameter that flips from undocumented to
  
  documented. Should be set automatically but on some platforms it doesn't work, set to
  
  the number of CPUs. This determines several other parameters.
  
   i、_INIT_SQL_FILE -- This is the initialization SQL script run by Oracle when a db is
  
  created. This should be sql.bsq, if you change it, you may not be supported.
  
   j、_TRACE_FILES_PUBLIC -- Changes the privileges on trace files such that everyone can
  
  read them. Should be OK to change at will.
  
   k、_FAST_FULL_SCAN_ENABLED -- Enables fast full index scans (or disables them) if
  
  only indexes are required to resolve the queries. Change this at will.
  
   l、_CORRUPT_BLOCKS_ON_STUCK_RECOVERY -- Can sometimes get a corrupted db
  
  up, you probably won't be supported if done without Oracle supports blessing, if you use
  
  it, immediately export the tables you need and rebuild the db.
  
   m、_ALWAYS_STAR_TRANSFORMATION -- Helps to tune data warehouse queries if you
  
  have a properly designed data warehouse.
  
   n、_SMALL_TABLE_THRESHOLD -- Sets the size of table considered a small table, a small
  
  table is automatically pinned into the buffers when queried. Defaults to 2% in Oracle9i
上一篇:KDD-数据库中的知识发现 人气:669
下一篇:不能启动 Easy Config时如何创建一个新的网络服务 人气:510
浏览全部Oracle教程的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐