perf-oci8.inc.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. <?php
  2. /*
  3. V4.60 24 Jan 2005 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. Released under both BSD license and Lesser GPL library license.
  5. Whenever there is any discrepancy between the two licenses,
  6. the BSD license will take precedence. See License.txt.
  7. Set tabs to 4 for best viewing.
  8. Latest version is available at http://adodb.sourceforge.net
  9. Library for basic performance monitoring and tuning
  10. */
  11. // security - hide paths
  12. if (!defined('ADODB_DIR')) die();
  13. class perf_oci8 extends ADODB_perf{
  14. var $tablesSQL = "select segment_name as \"tablename\", sum(bytes)/1024 as \"size_in_k\",tablespace_name as \"tablespace\",count(*) \"extents\" from sys.user_extents
  15. group by segment_name,tablespace_name";
  16. var $version;
  17. var $createTableSQL = "CREATE TABLE adodb_logsql (
  18. created date NOT NULL,
  19. sql0 varchar(250) NOT NULL,
  20. sql1 varchar(4000) NOT NULL,
  21. params varchar(4000),
  22. tracer varchar(4000),
  23. timer decimal(16,6) NOT NULL
  24. )";
  25. var $settings = array(
  26. 'Ratios',
  27. 'data cache hit ratio' => array('RATIOH',
  28. "select round((1-(phy.value / (cur.value + con.value)))*100,2)
  29. from v\$sysstat cur, v\$sysstat con, v\$sysstat phy
  30. where cur.name = 'db block gets' and
  31. con.name = 'consistent gets' and
  32. phy.name = 'physical reads'",
  33. '=WarnCacheRatio'),
  34. 'sql cache hit ratio' => array( 'RATIOH',
  35. 'select round(100*(sum(pins)-sum(reloads))/sum(pins),2) from v$librarycache',
  36. 'increase <i>shared_pool_size</i> if too ratio low'),
  37. 'datadict cache hit ratio' => array('RATIOH',
  38. "select
  39. round((1 - (sum(getmisses) / (sum(gets) +
  40. sum(getmisses))))*100,2)
  41. from v\$rowcache",
  42. 'increase <i>shared_pool_size</i> if too ratio low'),
  43. 'memory sort ratio' => array('RATIOH',
  44. "SELECT ROUND((100 * b.VALUE) /DECODE ((a.VALUE + b.VALUE),
  45. 0,1,(a.VALUE + b.VALUE)),2)
  46. FROM v\$sysstat a,
  47. v\$sysstat b
  48. WHERE a.name = 'sorts (disk)'
  49. AND b.name = 'sorts (memory)'",
  50. "% of memory sorts compared to disk sorts - should be over 95%"),
  51. 'IO',
  52. 'data reads' => array('IO',
  53. "select value from v\$sysstat where name='physical reads'"),
  54. 'data writes' => array('IO',
  55. "select value from v\$sysstat where name='physical writes'"),
  56. 'Data Cache',
  57. 'data cache buffers' => array( 'DATAC',
  58. "select a.value/b.value from v\$parameter a, v\$parameter b
  59. where a.name = 'db_cache_size' and b.name= 'db_block_size'",
  60. 'Number of cache buffers. Tune <i>db_cache_size</i> if the <i>data cache hit ratio</i> is too low.'),
  61. 'data cache blocksize' => array('DATAC',
  62. "select value from v\$parameter where name='db_block_size'",
  63. '' ),
  64. 'Memory Pools',
  65. 'data cache size' => array('DATAC',
  66. "select value from v\$parameter where name = 'db_cache_size'",
  67. 'db_cache_size' ),
  68. 'shared pool size' => array('DATAC',
  69. "select value from v\$parameter where name = 'shared_pool_size'",
  70. 'shared_pool_size, which holds shared sql, stored procedures, dict cache and similar shared structs' ),
  71. 'java pool size' => array('DATAJ',
  72. "select value from v\$parameter where name = 'java_pool_size'",
  73. 'java_pool_size' ),
  74. 'large pool buffer size' => array('CACHE',
  75. "select value from v\$parameter where name='large_pool_size'",
  76. 'this pool is for large mem allocations (not because it is larger than shared pool), for MTS sessions, parallel queries, io buffers (large_pool_size) ' ),
  77. 'pga buffer size' => array('CACHE',
  78. "select value from v\$parameter where name='pga_aggregate_target'",
  79. 'program global area is private memory for sorting, and hash and bitmap merges - since oracle 9i (pga_aggregate_target)' ),
  80. 'Connections',
  81. 'current connections' => array('SESS',
  82. 'select count(*) from sys.v_$session where username is not null',
  83. ''),
  84. 'max connections' => array( 'SESS',
  85. "select value from v\$parameter where name='sessions'",
  86. ''),
  87. 'Memory Utilization',
  88. 'data cache utilization ratio' => array('RATIOU',
  89. "select round((1-bytes/sgasize)*100, 2)
  90. from (select sum(bytes) sgasize from sys.v_\$sgastat) s, sys.v_\$sgastat f
  91. where name = 'free memory' and pool = 'shared pool'",
  92. 'Percentage of data cache actually in use - should be over 85%'),
  93. 'shared pool utilization ratio' => array('RATIOU',
  94. 'select round((sga.bytes/p.value)*100,2)
  95. from v$sgastat sga, v$parameter p
  96. where sga.name = \'free memory\' and sga.pool = \'shared pool\'
  97. and p.name = \'shared_pool_size\'',
  98. 'Percentage of shared pool actually used - too low is bad, too high is worse'),
  99. 'large pool utilization ratio' => array('RATIOU',
  100. "select round((1-bytes/sgasize)*100, 2)
  101. from (select sum(bytes) sgasize from sys.v_\$sgastat) s, sys.v_\$sgastat f
  102. where name = 'free memory' and pool = 'large pool'",
  103. 'Percentage of large_pool actually in use - too low is bad, too high is worse'),
  104. 'sort buffer size' => array('CACHE',
  105. "select value from v\$parameter where name='sort_area_size'",
  106. 'max in-mem sort_area_size (per query), uses memory in pga' ),
  107. 'pga usage at peak' => array('RATIOU',
  108. '=PGA','Mb utilization at peak transactions (requires Oracle 9i+)'),
  109. 'Transactions',
  110. 'rollback segments' => array('ROLLBACK',
  111. "select count(*) from sys.v_\$rollstat",
  112. ''),
  113. 'peak transactions' => array('ROLLBACK',
  114. "select max_utilization tx_hwm
  115. from sys.v_\$resource_limit
  116. where resource_name = 'transactions'",
  117. 'Taken from high-water-mark'),
  118. 'max transactions' => array('ROLLBACK',
  119. "select value from v\$parameter where name = 'transactions'",
  120. 'max transactions / rollback segments < 3.5 (or transactions_per_rollback_segment)'),
  121. 'Parameters',
  122. 'cursor sharing' => array('CURSOR',
  123. "select value from v\$parameter where name = 'cursor_sharing'",
  124. 'Cursor reuse strategy. Recommended is FORCE (8i+) or SIMILAR (9i+). See <a href=http://www.praetoriate.com/oracle_tips_cursor_sharing.htm>cursor_sharing</a>.'),
  125. /*
  126. 'cursor reuse' => array('CURSOR',
  127. "select count(*) from (select sql_text_wo_constants, count(*)
  128. from t1
  129. group by sql_text_wo_constants
  130. having count(*) > 100)",'These are sql statements that should be using bind variables'),*/
  131. 'index cache cost' => array('COST',
  132. "select value from v\$parameter where name = 'optimizer_index_caching'",
  133. '=WarnIndexCost'),
  134. 'random page cost' => array('COST',
  135. "select value from v\$parameter where name = 'optimizer_index_cost_adj'",
  136. '=WarnPageCost'),
  137. false
  138. );
  139. function perf_oci8(&$conn)
  140. {
  141. $savelog = $conn->LogSQL(false);
  142. $this->version = $conn->ServerInfo();
  143. $conn->LogSQL($savelog);
  144. $this->conn =& $conn;
  145. }
  146. function WarnPageCost($val)
  147. {
  148. if ($val == 100) $s = '<font color=red><b>Too High</b>. </font>';
  149. else $s = '';
  150. return $s.'Recommended is 20-50 for TP, and 50 for data warehouses. Default is 100. See <a href=http://www.dba-oracle.com/oracle_tips_cost_adj.htm>optimizer_index_cost_adj</a>. ';
  151. }
  152. function WarnIndexCost($val)
  153. {
  154. if ($val == 0) $s = '<font color=red><b>Too Low</b>. </font>';
  155. else $s = '';
  156. return $s.'Percentage of indexed data blocks expected in the cache.
  157. Recommended is 20 (fast disk array) to 50 (slower hard disks). Default is 0.
  158. See <a href=http://www.dba-oracle.com/oracle_tips_cbo_part1.htm>optimizer_index_caching</a>.';
  159. }
  160. function PGA()
  161. {
  162. if ($this->version['version'] < 9) return 'Oracle 9i or later required';
  163. $rs = $this->conn->Execute("select a.mb,a.targ as pga_size_pct,a.pct from
  164. (select round(pga_target_for_estimate/1024.0/1024.0,0) Mb,
  165. pga_target_factor targ,estd_pga_cache_hit_percentage pct,rownum as r
  166. from v\$pga_target_advice) a left join
  167. (select round(pga_target_for_estimate/1024.0/1024.0,0) Mb,
  168. pga_target_factor targ,estd_pga_cache_hit_percentage pct,rownum as r
  169. from v\$pga_target_advice) b on
  170. a.r = b.r+1 where
  171. b.pct < 100");
  172. if (!$rs) return "Only in 9i or later";
  173. $rs->Close();
  174. if ($rs->EOF) return "PGA could be too big";
  175. return reset($rs->fields);
  176. }
  177. function Explain($sql,$partial=false)
  178. {
  179. $savelog = $this->conn->LogSQL(false);
  180. $rs =& $this->conn->SelectLimit("select ID FROM PLAN_TABLE");
  181. if (!$rs) {
  182. echo "<p><b>Missing PLAN_TABLE</b></p>
  183. <pre>
  184. CREATE TABLE PLAN_TABLE (
  185. STATEMENT_ID VARCHAR2(30),
  186. TIMESTAMP DATE,
  187. REMARKS VARCHAR2(80),
  188. OPERATION VARCHAR2(30),
  189. OPTIONS VARCHAR2(30),
  190. OBJECT_NODE VARCHAR2(128),
  191. OBJECT_OWNER VARCHAR2(30),
  192. OBJECT_NAME VARCHAR2(30),
  193. OBJECT_INSTANCE NUMBER(38),
  194. OBJECT_TYPE VARCHAR2(30),
  195. OPTIMIZER VARCHAR2(255),
  196. SEARCH_COLUMNS NUMBER,
  197. ID NUMBER(38),
  198. PARENT_ID NUMBER(38),
  199. POSITION NUMBER(38),
  200. COST NUMBER(38),
  201. CARDINALITY NUMBER(38),
  202. BYTES NUMBER(38),
  203. OTHER_TAG VARCHAR2(255),
  204. PARTITION_START VARCHAR2(255),
  205. PARTITION_STOP VARCHAR2(255),
  206. PARTITION_ID NUMBER(38),
  207. OTHER LONG,
  208. DISTRIBUTION VARCHAR2(30)
  209. );
  210. </pre>";
  211. return false;
  212. }
  213. $rs->Close();
  214. // $this->conn->debug=1;
  215. if ($partial) {
  216. $sqlq = $this->conn->qstr($sql.'%');
  217. $arr = $this->conn->GetArray("select distinct distinct sql1 from adodb_logsql where sql1 like $sqlq");
  218. if ($arr) {
  219. foreach($arr as $row) {
  220. $sql = reset($row);
  221. if (crc32($sql) == $partial) break;
  222. }
  223. }
  224. }
  225. $s = "<p><b>Explain</b>: ".htmlspecialchars($sql)."</p>";
  226. $this->conn->BeginTrans();
  227. $id = "ADODB ".microtime();
  228. $rs =& $this->conn->Execute("EXPLAIN PLAN SET STATEMENT_ID='$id' FOR $sql");
  229. $m = $this->conn->ErrorMsg();
  230. if ($m) {
  231. $this->conn->RollbackTrans();
  232. $this->conn->LogSQL($savelog);
  233. $s .= "<p>$m</p>";
  234. return $s;
  235. }
  236. $rs = $this->conn->Execute("
  237. select
  238. '<pre>'||lpad('--', (level-1)*2,'-') || trim(operation) || ' ' || trim(options)||'</pre>' as Operation,
  239. object_name,COST,CARDINALITY,bytes
  240. FROM plan_table
  241. START WITH id = 0 and STATEMENT_ID='$id'
  242. CONNECT BY prior id=parent_id and statement_id='$id'");
  243. $s .= rs2html($rs,false,false,false,false);
  244. $this->conn->RollbackTrans();
  245. $this->conn->LogSQL($savelog);
  246. $s .= $this->Tracer($sql,$partial);
  247. return $s;
  248. }
  249. function CheckMemory()
  250. {
  251. if ($this->version['version'] < 9) return 'Oracle 9i or later required';
  252. $rs =& $this->conn->Execute("
  253. select a.size_for_estimate as cache_mb_estimate,
  254. case when a.size_factor=1 then
  255. '&lt;&lt;= current'
  256. when a.estd_physical_read_factor-b.estd_physical_read_factor > 0 and a.estd_physical_read_factor<1 then
  257. '- BETTER - '
  258. else ' ' end as currsize,
  259. a.estd_physical_read_factor-b.estd_physical_read_factor as best_when_0
  260. from (select size_for_estimate,size_factor,estd_physical_read_factor,rownum r from v\$db_cache_advice) a ,
  261. (select size_for_estimate,size_factor,estd_physical_read_factor,rownum r from v\$db_cache_advice) b where a.r = b.r-1");
  262. if (!$rs) return false;
  263. /*
  264. The v$db_cache_advice utility show the marginal changes in physical data block reads for different sizes of db_cache_size
  265. */
  266. $s = "<h3>Data Cache Estimate</h3>";
  267. if ($rs->EOF) {
  268. $s .= "<p>Cache that is 50% of current size is still too big</p>";
  269. } else {
  270. $s .= "Ideal size of Data Cache is when \"best_when_0\" changes from a positive number and becomes zero.";
  271. $s .= rs2html($rs,false,false,false,false);
  272. }
  273. return $s;
  274. }
  275. /*
  276. Generate html for suspicious/expensive sql
  277. */
  278. function tohtml(&$rs,$type)
  279. {
  280. $o1 = $rs->FetchField(0);
  281. $o2 = $rs->FetchField(1);
  282. $o3 = $rs->FetchField(2);
  283. if ($rs->EOF) return '<p>None found</p>';
  284. $check = '';
  285. $sql = '';
  286. $s = "\n\n<table border=1 bgcolor=white><tr><td><b>".$o1->name.'</b></td><td><b>'.$o2->name.'</b></td><td><b>'.$o3->name.'</b></td></tr>';
  287. while (!$rs->EOF) {
  288. if ($check != $rs->fields[0].'::'.$rs->fields[1]) {
  289. if ($check) {
  290. $carr = explode('::',$check);
  291. $prefix = "<a href=\"?$type=1&sql=".rawurlencode($sql).'&x#explain">';
  292. $suffix = '</a>';
  293. if (strlen($prefix)>2000) {
  294. $prefix = '';
  295. $suffix = '';
  296. }
  297. $s .= "\n<tr><td align=right>".$carr[0].'</td><td align=right>'.$carr[1].'</td><td>'.$prefix.$sql.$suffix.'</td></tr>';
  298. }
  299. $sql = $rs->fields[2];
  300. $check = $rs->fields[0].'::'.$rs->fields[1];
  301. } else
  302. $sql .= $rs->fields[2];
  303. $rs->MoveNext();
  304. }
  305. $rs->Close();
  306. $carr = explode('::',$check);
  307. $prefix = "<a target=".rand()." href=\"?&hidem=1&$type=1&sql=".rawurlencode($sql).'&x#explain">';
  308. $suffix = '</a>';
  309. if (strlen($prefix)>2000) {
  310. $prefix = '';
  311. $suffix = '';
  312. }
  313. $s .= "\n<tr><td align=right>".$carr[0].'</td><td align=right>'.$carr[1].'</td><td>'.$prefix.$sql.$suffix.'</td></tr>';
  314. return $s."</table>\n\n";
  315. }
  316. // code thanks to Ixora.
  317. // http://www.ixora.com.au/scripts/query_opt.htm
  318. // requires oracle 8.1.7 or later
  319. function SuspiciousSQL($numsql=10)
  320. {
  321. $sql = "
  322. select
  323. substr(to_char(s.pct, '99.00'), 2) || '%' load,
  324. s.executions executes,
  325. p.sql_text
  326. from
  327. (
  328. select
  329. address,
  330. buffer_gets,
  331. executions,
  332. pct,
  333. rank() over (order by buffer_gets desc) ranking
  334. from
  335. (
  336. select
  337. address,
  338. buffer_gets,
  339. executions,
  340. 100 * ratio_to_report(buffer_gets) over () pct
  341. from
  342. sys.v_\$sql
  343. where
  344. command_type != 47 and module != 'T.O.A.D.'
  345. )
  346. where
  347. buffer_gets > 50 * executions
  348. ) s,
  349. sys.v_\$sqltext p
  350. where
  351. s.ranking <= $numsql and
  352. p.address = s.address
  353. order by
  354. 1 desc, s.address, p.piece";
  355. global $ADODB_CACHE_MODE,$HTTP_GET_VARS;
  356. if (isset($HTTP_GET_VARS['expsixora']) && isset($HTTP_GET_VARS['sql'])) {
  357. $partial = empty($HTTP_GET_VARS['part']);
  358. echo "<a name=explain></a>".$this->Explain($HTTP_GET_VARS['sql'],$partial)."\n";
  359. }
  360. if (isset($HTTP_GET_VARS['sql'])) return $this->_SuspiciousSQL();
  361. $save = $ADODB_CACHE_MODE;
  362. $ADODB_CACHE_MODE = ADODB_FETCH_NUM;
  363. $savelog = $this->conn->LogSQL(false);
  364. $rs =& $this->conn->SelectLimit($sql);
  365. $this->conn->LogSQL($savelog);
  366. $ADODB_CACHE_MODE = $save;
  367. if ($rs) {
  368. $s = "\n<h3>Ixora Suspicious SQL</h3>";
  369. $s .= $this->tohtml($rs,'expsixora');
  370. } else
  371. $s = '';
  372. if ($s) $s .= '<p>';
  373. $s .= $this->_SuspiciousSQL();
  374. return $s;
  375. }
  376. // code thanks to Ixora.
  377. // http://www.ixora.com.au/scripts/query_opt.htm
  378. // requires oracle 8.1.7 or later
  379. function ExpensiveSQL($numsql = 10)
  380. {
  381. $sql = "
  382. select
  383. substr(to_char(s.pct, '99.00'), 2) || '%' load,
  384. s.executions executes,
  385. p.sql_text
  386. from
  387. (
  388. select
  389. address,
  390. disk_reads,
  391. executions,
  392. pct,
  393. rank() over (order by disk_reads desc) ranking
  394. from
  395. (
  396. select
  397. address,
  398. disk_reads,
  399. executions,
  400. 100 * ratio_to_report(disk_reads) over () pct
  401. from
  402. sys.v_\$sql
  403. where
  404. command_type != 47 and module != 'T.O.A.D.'
  405. )
  406. where
  407. disk_reads > 50 * executions
  408. ) s,
  409. sys.v_\$sqltext p
  410. where
  411. s.ranking <= $numsql and
  412. p.address = s.address
  413. order by
  414. 1 desc, s.address, p.piece
  415. ";
  416. global $ADODB_CACHE_MODE,$HTTP_GET_VARS;
  417. if (isset($HTTP_GET_VARS['expeixora']) && isset($HTTP_GET_VARS['sql'])) {
  418. $partial = empty($HTTP_GET_VARS['part']);
  419. echo "<a name=explain></a>".$this->Explain($HTTP_GET_VARS['sql'],$partial)."\n";
  420. }
  421. if (isset($HTTP_GET_VARS['sql'])) {
  422. $var =& $this->_ExpensiveSQL();
  423. return $var;
  424. }
  425. $save = $ADODB_CACHE_MODE;
  426. $ADODB_CACHE_MODE = ADODB_FETCH_NUM;
  427. $savelog = $this->conn->LogSQL(false);
  428. $rs =& $this->conn->Execute($sql);
  429. $this->conn->LogSQL($savelog);
  430. $ADODB_CACHE_MODE = $save;
  431. if ($rs) {
  432. $s = "\n<h3>Ixora Expensive SQL</h3>";
  433. $s .= $this->tohtml($rs,'expeixora');
  434. } else
  435. $s = '';
  436. if ($s) $s .= '<p>';
  437. $s .= $this->_ExpensiveSQL();
  438. return $s;
  439. }
  440. }
  441. ?>