Introduction: AWR (Automatic Workload Repository) is an Oracle performance monitoring feature that collects, processes, and stores database performance statistics. These statistics are used for problem diagnosis and self-tuning of the database. The collected data can be viewed through database views or generated as HTML or text reports, helping DBAs analyze the current performance state of the database in detail. Background Processes for AWR: MMON : Collects AWR statistics. MMNL : Writes ASH and AWR data to disk. Data Collected by AWR: AWR captures a wide range of performance related metrics, including: Object Statistics: Access and usage statistics of database segments. Time Model Statistics: Data from V$SYS_TIME_MODEL and V$SESS_TIME_MODEL views. System and Session Statistics: Selected statistics from V$SYSSTAT and V$SESSTAT views. Active Session History (ASH) statistics. High-load SQL statements contributing significantly to database w...