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.
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: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectDescribes the maximum values on GV$SQL view.
    
    
    
    
        Show Source
        - 
            links(optional): 
            array  links
            
            
 - 
            max_buffer_gets(optional): 
            integer
            Maximum number of buffer gets by an SQL Statement.
 - 
            max_cpu_time(optional): 
            integer
            Maximum CPU time (in microseconds) used by an SQL Statement for parsing, executing, and fetching.
 - 
            max_disk_reads(optional): 
            integer
            Maximum number of disk reads by an SQL Statement.
 - 
            max_elapsed_time(optional): 
            integer
            Maximum elapsed time (in microseconds) used by an SQL Statement for parsing, executing, and fetching.
 - 
            max_executions(optional): 
            integer
            Maximum number of executions that took place for an SQL Statement since it was brought into the library cache.