Advertisement
mms1973

oracleperf

Jun 13th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Training on 13/06
  2.  
  3. tuning, two things to look at: wait events and statistics
  4.  
  5. 80% of AWR report is for Oracle
  6.  
  7. Automatic perfomance tuning features:
  8. -AWR Automatic Workload Repository
  9. -Automatic Db diagnostic monitor (ADDM)
  10.  
  11. Top 10 foreground events by Total Wait Time
  12.  
  13. @v_sys_time_model
  14.  
  15. list of waits:
  16. select name from $v_sys_time_model
  17.  
  18. enq:TX - row lock contention (used while insert, update, etc)
  19. log file sync: wit for commit (no more than 4ms)
  20.  
  21. desc v$system_event
  22.  
  23. !ls v*
  24.  
  25. top20 wait reason
  26. +-----------------------------------+
  27. DB time = DB CPU time + DB wait time
  28. +-----------------------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement