建索引时,我们为了建索引快,会加上并行,加上并行之后,此列索引就会是并行了.访问有并行度的索引时,CBO可能可能会考虑并行执行,这可能会引发一些问题,如在服务器资源紧张的时候用并行会引起更加严重的争用.当使用并行后,需要把并行度改回来. 1.并发常见索引 ; 2.关闭并发 ALTER INDEX 索引名 noparallel;
1.如果前台无法取消请求出现错误: 则后台更新 update fnd_concurrent_requests set status_code = 'X', phase_code = 'C' where request_id in ('6779908') ; 2.后台如果更新失败,则检查锁表(1中事务不提交): spool c:\lock.txt set line 1000 set echo off set serveroutput on --set feedback off p
1.INFO: Maximum number of threads (200) created for connector with address null and port 8091 说明:最大线程数错误 解决方案: 使用线程池,用较少的线程处理较多的访问,可以提高tomcat处理请求的能力.使用方式: 首先.打开/conf/server.xml,增加 <Executor name="tomcatThreadPool" namePrefix="catalina-ex