IOPS (Input/Output Operations Per Second) is a common performance metric used to compare computer storage devices.

IOPS in Oracle databases is the total number of read and write requests of the database system per second. To maintain database performance, we must check whether our hardware is capable of processing the request generated by the database system.

These values ​​are in the dba_hist_sysmetric_summary table.


Find the IOPS value of the instance(since its started):

 
1
2
3
dba_hist_sysmetric_summary
)

You can access the metric values between two dates by the following query:

 
1
2
3
4
5
6
7
value
dba_hist_sysmetric_summary
)
)
'%16-FEB-17%'
)
;

You can also access all metric values from the Instance Activity Stats section of the AWR report.

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-16
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-03-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-03-05
  • 2022-02-16
  • 2021-05-31
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
相关资源
相似解决方案