Get SQL statistics maximum values
get
/database/performance/top_sql_statements/maximums
Returns maximum values for cpu time, elapsed time, disk reads, buffer gets and executions from GV$SQL. A client requires SQL Administrator role to invoke this service.
Request
There are no request parameters for this operation.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Maximum values for SQL statement performance statistics recorded in GV$SQL.
Root Schema : PerformanceTopSQLStatementsMaximumsItem
Type:
object
Describes the maximum values on GV$SQL view.
Show Source
-
links: array
links
-
max_buffer_gets: integer
Maximum number of buffer gets by an SQL Statement.
-
max_cpu_time: integer
Maximum CPU time (in microseconds) used by an SQL Statement for parsing, executing, and fetching.
-
max_disk_reads: integer
Maximum number of disk reads by an SQL Statement.
-
max_elapsed_time: integer
Maximum elapsed time (in microseconds) used by an SQL Statement for parsing, executing, and fetching.
-
max_executions: integer
Maximum number of executions that took place for an SQL Statement since it was brought into the library cache.