1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getManagedMySqlDatabaseSqlData
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DatabaseManagement.getManagedMySqlDatabaseSqlData

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Managed My Sql Database Sql Data in Oracle Cloud Infrastructure Database Management service.

Retrieves SQL performance data for given MySQL Instance.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testManagedMySqlDatabaseSqlData = oci.DatabaseManagement.getManagedMySqlDatabaseSqlData({
    endTime: managedMySqlDatabaseSqlDataEndTime,
    managedMySqlDatabaseId: testManagedMySqlDatabase.id,
    startTime: managedMySqlDatabaseSqlDataStartTime,
    filterColumn: managedMySqlDatabaseSqlDataFilterColumn,
});
Copy
import pulumi
import pulumi_oci as oci

test_managed_my_sql_database_sql_data = oci.DatabaseManagement.get_managed_my_sql_database_sql_data(end_time=managed_my_sql_database_sql_data_end_time,
    managed_my_sql_database_id=test_managed_my_sql_database["id"],
    start_time=managed_my_sql_database_sql_data_start_time,
    filter_column=managed_my_sql_database_sql_data_filter_column)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.GetManagedMySqlDatabaseSqlData(ctx, &databasemanagement.GetManagedMySqlDatabaseSqlDataArgs{
			EndTime:                managedMySqlDatabaseSqlDataEndTime,
			ManagedMySqlDatabaseId: testManagedMySqlDatabase.Id,
			StartTime:              managedMySqlDatabaseSqlDataStartTime,
			FilterColumn:           pulumi.StringRef(managedMySqlDatabaseSqlDataFilterColumn),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testManagedMySqlDatabaseSqlData = Oci.DatabaseManagement.GetManagedMySqlDatabaseSqlData.Invoke(new()
    {
        EndTime = managedMySqlDatabaseSqlDataEndTime,
        ManagedMySqlDatabaseId = testManagedMySqlDatabase.Id,
        StartTime = managedMySqlDatabaseSqlDataStartTime,
        FilterColumn = managedMySqlDatabaseSqlDataFilterColumn,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetManagedMySqlDatabaseSqlDataArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testManagedMySqlDatabaseSqlData = DatabaseManagementFunctions.getManagedMySqlDatabaseSqlData(GetManagedMySqlDatabaseSqlDataArgs.builder()
            .endTime(managedMySqlDatabaseSqlDataEndTime)
            .managedMySqlDatabaseId(testManagedMySqlDatabase.id())
            .startTime(managedMySqlDatabaseSqlDataStartTime)
            .filterColumn(managedMySqlDatabaseSqlDataFilterColumn)
            .build());

    }
}
Copy
variables:
  testManagedMySqlDatabaseSqlData:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedMySqlDatabaseSqlData
      arguments:
        endTime: ${managedMySqlDatabaseSqlDataEndTime}
        managedMySqlDatabaseId: ${testManagedMySqlDatabase.id}
        startTime: ${managedMySqlDatabaseSqlDataStartTime}
        filterColumn: ${managedMySqlDatabaseSqlDataFilterColumn}
Copy

Using getManagedMySqlDatabaseSqlData

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getManagedMySqlDatabaseSqlData(args: GetManagedMySqlDatabaseSqlDataArgs, opts?: InvokeOptions): Promise<GetManagedMySqlDatabaseSqlDataResult>
function getManagedMySqlDatabaseSqlDataOutput(args: GetManagedMySqlDatabaseSqlDataOutputArgs, opts?: InvokeOptions): Output<GetManagedMySqlDatabaseSqlDataResult>
Copy
def get_managed_my_sql_database_sql_data(end_time: Optional[str] = None,
                                         filter_column: Optional[str] = None,
                                         filters: Optional[Sequence[_databasemanagement.GetManagedMySqlDatabaseSqlDataFilter]] = None,
                                         managed_my_sql_database_id: Optional[str] = None,
                                         start_time: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetManagedMySqlDatabaseSqlDataResult
def get_managed_my_sql_database_sql_data_output(end_time: Optional[pulumi.Input[str]] = None,
                                         filter_column: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetManagedMySqlDatabaseSqlDataFilterArgs]]]] = None,
                                         managed_my_sql_database_id: Optional[pulumi.Input[str]] = None,
                                         start_time: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetManagedMySqlDatabaseSqlDataResult]
Copy
func GetManagedMySqlDatabaseSqlData(ctx *Context, args *GetManagedMySqlDatabaseSqlDataArgs, opts ...InvokeOption) (*GetManagedMySqlDatabaseSqlDataResult, error)
func GetManagedMySqlDatabaseSqlDataOutput(ctx *Context, args *GetManagedMySqlDatabaseSqlDataOutputArgs, opts ...InvokeOption) GetManagedMySqlDatabaseSqlDataResultOutput
Copy

> Note: This function is named GetManagedMySqlDatabaseSqlData in the Go SDK.

public static class GetManagedMySqlDatabaseSqlData 
{
    public static Task<GetManagedMySqlDatabaseSqlDataResult> InvokeAsync(GetManagedMySqlDatabaseSqlDataArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedMySqlDatabaseSqlDataResult> Invoke(GetManagedMySqlDatabaseSqlDataInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetManagedMySqlDatabaseSqlDataResult> getManagedMySqlDatabaseSqlData(GetManagedMySqlDatabaseSqlDataArgs args, InvokeOptions options)
public static Output<GetManagedMySqlDatabaseSqlDataResult> getManagedMySqlDatabaseSqlData(GetManagedMySqlDatabaseSqlDataArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseManagement/getManagedMySqlDatabaseSqlData:getManagedMySqlDatabaseSqlData
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

EndTime This property is required. string
The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
ManagedMySqlDatabaseId This property is required. string
The OCID of the Managed MySQL Database.
StartTime This property is required. string
The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
FilterColumn string
The parameter to filter results by key criteria which include :

  • AVG_TIMER_WAIT
  • SUM_TIMER_WAIT
  • COUNT_STAR
  • SUM_ERRORS
  • SUM_ROWS_AFFECTED
  • SUM_ROWS_SENT
  • SUM_ROWS_EXAMINED
  • SUM_CREATED_TMP_TABLES
  • SUM_NO_INDEX_USED
  • SUM_NO_GOOD_INDEX_USED
  • FIRST_SEEN
  • LAST_SEEN
  • HEATWAVE_OFFLOADED
  • HEATWAVE_OUT_OF_MEMORY
Filters Changes to this property will trigger replacement. List<GetManagedMySqlDatabaseSqlDataFilter>
EndTime This property is required. string
The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
ManagedMySqlDatabaseId This property is required. string
The OCID of the Managed MySQL Database.
StartTime This property is required. string
The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
FilterColumn string
The parameter to filter results by key criteria which include :

  • AVG_TIMER_WAIT
  • SUM_TIMER_WAIT
  • COUNT_STAR
  • SUM_ERRORS
  • SUM_ROWS_AFFECTED
  • SUM_ROWS_SENT
  • SUM_ROWS_EXAMINED
  • SUM_CREATED_TMP_TABLES
  • SUM_NO_INDEX_USED
  • SUM_NO_GOOD_INDEX_USED
  • FIRST_SEEN
  • LAST_SEEN
  • HEATWAVE_OFFLOADED
  • HEATWAVE_OUT_OF_MEMORY
Filters Changes to this property will trigger replacement. []GetManagedMySqlDatabaseSqlDataFilter
endTime This property is required. String
The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
managedMySqlDatabaseId This property is required. String
The OCID of the Managed MySQL Database.
startTime This property is required. String
The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
filterColumn String
The parameter to filter results by key criteria which include :

  • AVG_TIMER_WAIT
  • SUM_TIMER_WAIT
  • COUNT_STAR
  • SUM_ERRORS
  • SUM_ROWS_AFFECTED
  • SUM_ROWS_SENT
  • SUM_ROWS_EXAMINED
  • SUM_CREATED_TMP_TABLES
  • SUM_NO_INDEX_USED
  • SUM_NO_GOOD_INDEX_USED
  • FIRST_SEEN
  • LAST_SEEN
  • HEATWAVE_OFFLOADED
  • HEATWAVE_OUT_OF_MEMORY
filters Changes to this property will trigger replacement. List<GetManagedMySqlDatabaseSqlDataFilter>
endTime This property is required. string
The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
managedMySqlDatabaseId This property is required. string
The OCID of the Managed MySQL Database.
startTime This property is required. string
The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
filterColumn string
The parameter to filter results by key criteria which include :

  • AVG_TIMER_WAIT
  • SUM_TIMER_WAIT
  • COUNT_STAR
  • SUM_ERRORS
  • SUM_ROWS_AFFECTED
  • SUM_ROWS_SENT
  • SUM_ROWS_EXAMINED
  • SUM_CREATED_TMP_TABLES
  • SUM_NO_INDEX_USED
  • SUM_NO_GOOD_INDEX_USED
  • FIRST_SEEN
  • LAST_SEEN
  • HEATWAVE_OFFLOADED
  • HEATWAVE_OUT_OF_MEMORY
filters Changes to this property will trigger replacement. GetManagedMySqlDatabaseSqlDataFilter[]
end_time This property is required. str
The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
managed_my_sql_database_id This property is required. str
The OCID of the Managed MySQL Database.
start_time This property is required. str
The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
filter_column str
The parameter to filter results by key criteria which include :

  • AVG_TIMER_WAIT
  • SUM_TIMER_WAIT
  • COUNT_STAR
  • SUM_ERRORS
  • SUM_ROWS_AFFECTED
  • SUM_ROWS_SENT
  • SUM_ROWS_EXAMINED
  • SUM_CREATED_TMP_TABLES
  • SUM_NO_INDEX_USED
  • SUM_NO_GOOD_INDEX_USED
  • FIRST_SEEN
  • LAST_SEEN
  • HEATWAVE_OFFLOADED
  • HEATWAVE_OUT_OF_MEMORY
filters Changes to this property will trigger replacement. Sequence[databasemanagement.GetManagedMySqlDatabaseSqlDataFilter]
endTime This property is required. String
The end time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
managedMySqlDatabaseId This property is required. String
The OCID of the Managed MySQL Database.
startTime This property is required. String
The start time of the time range to retrieve the health metrics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
filterColumn String
The parameter to filter results by key criteria which include :

  • AVG_TIMER_WAIT
  • SUM_TIMER_WAIT
  • COUNT_STAR
  • SUM_ERRORS
  • SUM_ROWS_AFFECTED
  • SUM_ROWS_SENT
  • SUM_ROWS_EXAMINED
  • SUM_CREATED_TMP_TABLES
  • SUM_NO_INDEX_USED
  • SUM_NO_GOOD_INDEX_USED
  • FIRST_SEEN
  • LAST_SEEN
  • HEATWAVE_OFFLOADED
  • HEATWAVE_OUT_OF_MEMORY
filters Changes to this property will trigger replacement. List<Property Map>

getManagedMySqlDatabaseSqlData Result

The following output properties are available:

EndTime string
Id string
The provider-assigned unique ID for this managed resource.
ManagedMySqlDatabaseId string
MySqlDataCollections List<GetManagedMySqlDatabaseSqlDataMySqlDataCollection>
The list of my_sql_data_collection.
StartTime string
FilterColumn string
Filters List<GetManagedMySqlDatabaseSqlDataFilter>
EndTime string
Id string
The provider-assigned unique ID for this managed resource.
ManagedMySqlDatabaseId string
MySqlDataCollections []GetManagedMySqlDatabaseSqlDataMySqlDataCollection
The list of my_sql_data_collection.
StartTime string
FilterColumn string
Filters []GetManagedMySqlDatabaseSqlDataFilter
endTime String
id String
The provider-assigned unique ID for this managed resource.
managedMySqlDatabaseId String
mySqlDataCollections List<GetManagedMySqlDatabaseSqlDataMySqlDataCollection>
The list of my_sql_data_collection.
startTime String
filterColumn String
filters List<GetManagedMySqlDatabaseSqlDataFilter>
endTime string
id string
The provider-assigned unique ID for this managed resource.
managedMySqlDatabaseId string
mySqlDataCollections GetManagedMySqlDatabaseSqlDataMySqlDataCollection[]
The list of my_sql_data_collection.
startTime string
filterColumn string
filters GetManagedMySqlDatabaseSqlDataFilter[]
endTime String
id String
The provider-assigned unique ID for this managed resource.
managedMySqlDatabaseId String
mySqlDataCollections List<Property Map>
The list of my_sql_data_collection.
startTime String
filterColumn String
filters List<Property Map>

Supporting Types

GetManagedMySqlDatabaseSqlDataFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetManagedMySqlDatabaseSqlDataMySqlDataCollection

Items This property is required. List<GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem>
The list of SQLDataSummary records.
Items This property is required. []GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem
The list of SQLDataSummary records.
items This property is required. List<GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem>
The list of SQLDataSummary records.
items This property is required. GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem[]
The list of SQLDataSummary records.
items This property is required. Sequence[databasemanagement.GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem]
The list of SQLDataSummary records.
items This property is required. List<Property Map>
The list of SQLDataSummary records.

GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem

AvgTimerWait This property is required. double
The average execution time.
CountStar This property is required. double
The number Of times the query has been executed.
Digest This property is required. string
The digest information of the normalized query.
DigestText This property is required. string
The normalized query.
FirstSeen This property is required. string
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
HeatWaveOffloaded This property is required. double
The number of query executions offloaded to HeatWave.
HeatWaveOutOfMemory This property is required. double
The number of query executions with HeatWave out-of-memory errors.
LastSeen This property is required. string
The date and time the query was last seen.
MaxControlledMemory This property is required. string
The maximum amount of controlled memory used by a statement during execution.
MaxTimerWait This property is required. double
The slowest the query has been executed.
MaxTotalMemory This property is required. string
The maximum amount of memory used by a statement during execution.
MinTimerWait This property is required. double
The fastest the query has been executed.
Quantile95 This property is required. double
The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
Quantile99 This property is required. double
The 99th percentile of the query latency.
Quantile999 This property is required. double
The 99.9th percentile of the query latency.
SchemaName This property is required. string
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
SumCpuTime This property is required. string
The total amount of time spent on CPU for this statement.
SumCreatedTempDiskTables This property is required. double
The total number of On-Disk internal temporary tables that have been created by the query.
SumCreatedTempTables This property is required. double
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
SumErrors This property is required. double
The total number of errors that have been encountered executing the query.
SumLockTime This property is required. double
The total amount of time that has been spent waiting for table locks.
SumNoGoodIndexUsed This property is required. double
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
SumNoIndexUsed This property is required. double
The total number of times no index was used to execute the query.
SumRowsAffected This property is required. double
The total number of rows that have been modified by the query.
SumRowsExamined This property is required. double
The total number of rows that have been examined by the query.
SumRowsSent This property is required. double
The total number of rows that have been returned (sent) to the client.
SumSelectFullJoin This property is required. double
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
SumSelectFullRangeJoin This property is required. double
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
SumSelectRange This property is required. double
The total number of times the query has used a range search. This is the same as the select_range status variable.
SumSelectRangeCheck This property is required. double
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
SumSelectScan This property is required. double
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
SumSortMergePasses This property is required. double
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
SumSortRange This property is required. double
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
SumSortRows This property is required. double
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
SumSortScan This property is required. double
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
SumTimerWait This property is required. double
The total amount of time that has been spent executing the query.
SumWarnings This property is required. double
The total number of warnings that have been encountered executing the query.
AvgTimerWait This property is required. float64
The average execution time.
CountStar This property is required. float64
The number Of times the query has been executed.
Digest This property is required. string
The digest information of the normalized query.
DigestText This property is required. string
The normalized query.
FirstSeen This property is required. string
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
HeatWaveOffloaded This property is required. float64
The number of query executions offloaded to HeatWave.
HeatWaveOutOfMemory This property is required. float64
The number of query executions with HeatWave out-of-memory errors.
LastSeen This property is required. string
The date and time the query was last seen.
MaxControlledMemory This property is required. string
The maximum amount of controlled memory used by a statement during execution.
MaxTimerWait This property is required. float64
The slowest the query has been executed.
MaxTotalMemory This property is required. string
The maximum amount of memory used by a statement during execution.
MinTimerWait This property is required. float64
The fastest the query has been executed.
Quantile95 This property is required. float64
The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
Quantile99 This property is required. float64
The 99th percentile of the query latency.
Quantile999 This property is required. float64
The 99.9th percentile of the query latency.
SchemaName This property is required. string
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
SumCpuTime This property is required. string
The total amount of time spent on CPU for this statement.
SumCreatedTempDiskTables This property is required. float64
The total number of On-Disk internal temporary tables that have been created by the query.
SumCreatedTempTables This property is required. float64
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
SumErrors This property is required. float64
The total number of errors that have been encountered executing the query.
SumLockTime This property is required. float64
The total amount of time that has been spent waiting for table locks.
SumNoGoodIndexUsed This property is required. float64
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
SumNoIndexUsed This property is required. float64
The total number of times no index was used to execute the query.
SumRowsAffected This property is required. float64
The total number of rows that have been modified by the query.
SumRowsExamined This property is required. float64
The total number of rows that have been examined by the query.
SumRowsSent This property is required. float64
The total number of rows that have been returned (sent) to the client.
SumSelectFullJoin This property is required. float64
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
SumSelectFullRangeJoin This property is required. float64
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
SumSelectRange This property is required. float64
The total number of times the query has used a range search. This is the same as the select_range status variable.
SumSelectRangeCheck This property is required. float64
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
SumSelectScan This property is required. float64
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
SumSortMergePasses This property is required. float64
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
SumSortRange This property is required. float64
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
SumSortRows This property is required. float64
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
SumSortScan This property is required. float64
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
SumTimerWait This property is required. float64
The total amount of time that has been spent executing the query.
SumWarnings This property is required. float64
The total number of warnings that have been encountered executing the query.
avgTimerWait This property is required. Double
The average execution time.
countStar This property is required. Double
The number Of times the query has been executed.
digest This property is required. String
The digest information of the normalized query.
digestText This property is required. String
The normalized query.
firstSeen This property is required. String
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
heatWaveOffloaded This property is required. Double
The number of query executions offloaded to HeatWave.
heatWaveOutOfMemory This property is required. Double
The number of query executions with HeatWave out-of-memory errors.
lastSeen This property is required. String
The date and time the query was last seen.
maxControlledMemory This property is required. String
The maximum amount of controlled memory used by a statement during execution.
maxTimerWait This property is required. Double
The slowest the query has been executed.
maxTotalMemory This property is required. String
The maximum amount of memory used by a statement during execution.
minTimerWait This property is required. Double
The fastest the query has been executed.
quantile95 This property is required. Double
The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
quantile99 This property is required. Double
The 99th percentile of the query latency.
quantile999 This property is required. Double
The 99.9th percentile of the query latency.
schemaName This property is required. String
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
sumCpuTime This property is required. String
The total amount of time spent on CPU for this statement.
sumCreatedTempDiskTables This property is required. Double
The total number of On-Disk internal temporary tables that have been created by the query.
sumCreatedTempTables This property is required. Double
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
sumErrors This property is required. Double
The total number of errors that have been encountered executing the query.
sumLockTime This property is required. Double
The total amount of time that has been spent waiting for table locks.
sumNoGoodIndexUsed This property is required. Double
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
sumNoIndexUsed This property is required. Double
The total number of times no index was used to execute the query.
sumRowsAffected This property is required. Double
The total number of rows that have been modified by the query.
sumRowsExamined This property is required. Double
The total number of rows that have been examined by the query.
sumRowsSent This property is required. Double
The total number of rows that have been returned (sent) to the client.
sumSelectFullJoin This property is required. Double
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
sumSelectFullRangeJoin This property is required. Double
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
sumSelectRange This property is required. Double
The total number of times the query has used a range search. This is the same as the select_range status variable.
sumSelectRangeCheck This property is required. Double
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
sumSelectScan This property is required. Double
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
sumSortMergePasses This property is required. Double
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
sumSortRange This property is required. Double
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
sumSortRows This property is required. Double
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
sumSortScan This property is required. Double
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
sumTimerWait This property is required. Double
The total amount of time that has been spent executing the query.
sumWarnings This property is required. Double
The total number of warnings that have been encountered executing the query.
avgTimerWait This property is required. number
The average execution time.
countStar This property is required. number
The number Of times the query has been executed.
digest This property is required. string
The digest information of the normalized query.
digestText This property is required. string
The normalized query.
firstSeen This property is required. string
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
heatWaveOffloaded This property is required. number
The number of query executions offloaded to HeatWave.
heatWaveOutOfMemory This property is required. number
The number of query executions with HeatWave out-of-memory errors.
lastSeen This property is required. string
The date and time the query was last seen.
maxControlledMemory This property is required. string
The maximum amount of controlled memory used by a statement during execution.
maxTimerWait This property is required. number
The slowest the query has been executed.
maxTotalMemory This property is required. string
The maximum amount of memory used by a statement during execution.
minTimerWait This property is required. number
The fastest the query has been executed.
quantile95 This property is required. number
The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
quantile99 This property is required. number
The 99th percentile of the query latency.
quantile999 This property is required. number
The 99.9th percentile of the query latency.
schemaName This property is required. string
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
sumCpuTime This property is required. string
The total amount of time spent on CPU for this statement.
sumCreatedTempDiskTables This property is required. number
The total number of On-Disk internal temporary tables that have been created by the query.
sumCreatedTempTables This property is required. number
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
sumErrors This property is required. number
The total number of errors that have been encountered executing the query.
sumLockTime This property is required. number
The total amount of time that has been spent waiting for table locks.
sumNoGoodIndexUsed This property is required. number
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
sumNoIndexUsed This property is required. number
The total number of times no index was used to execute the query.
sumRowsAffected This property is required. number
The total number of rows that have been modified by the query.
sumRowsExamined This property is required. number
The total number of rows that have been examined by the query.
sumRowsSent This property is required. number
The total number of rows that have been returned (sent) to the client.
sumSelectFullJoin This property is required. number
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
sumSelectFullRangeJoin This property is required. number
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
sumSelectRange This property is required. number
The total number of times the query has used a range search. This is the same as the select_range status variable.
sumSelectRangeCheck This property is required. number
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
sumSelectScan This property is required. number
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
sumSortMergePasses This property is required. number
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
sumSortRange This property is required. number
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
sumSortRows This property is required. number
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
sumSortScan This property is required. number
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
sumTimerWait This property is required. number
The total amount of time that has been spent executing the query.
sumWarnings This property is required. number
The total number of warnings that have been encountered executing the query.
avg_timer_wait This property is required. float
The average execution time.
count_star This property is required. float
The number Of times the query has been executed.
digest This property is required. str
The digest information of the normalized query.
digest_text This property is required. str
The normalized query.
first_seen This property is required. str
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
heat_wave_offloaded This property is required. float
The number of query executions offloaded to HeatWave.
heat_wave_out_of_memory This property is required. float
The number of query executions with HeatWave out-of-memory errors.
last_seen This property is required. str
The date and time the query was last seen.
max_controlled_memory This property is required. str
The maximum amount of controlled memory used by a statement during execution.
max_timer_wait This property is required. float
The slowest the query has been executed.
max_total_memory This property is required. str
The maximum amount of memory used by a statement during execution.
min_timer_wait This property is required. float
The fastest the query has been executed.
quantile95 This property is required. float
The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
quantile99 This property is required. float
The 99th percentile of the query latency.
quantile999 This property is required. float
The 99.9th percentile of the query latency.
schema_name This property is required. str
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
sum_cpu_time This property is required. str
The total amount of time spent on CPU for this statement.
sum_created_temp_disk_tables This property is required. float
The total number of On-Disk internal temporary tables that have been created by the query.
sum_created_temp_tables This property is required. float
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
sum_errors This property is required. float
The total number of errors that have been encountered executing the query.
sum_lock_time This property is required. float
The total amount of time that has been spent waiting for table locks.
sum_no_good_index_used This property is required. float
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
sum_no_index_used This property is required. float
The total number of times no index was used to execute the query.
sum_rows_affected This property is required. float
The total number of rows that have been modified by the query.
sum_rows_examined This property is required. float
The total number of rows that have been examined by the query.
sum_rows_sent This property is required. float
The total number of rows that have been returned (sent) to the client.
sum_select_full_join This property is required. float
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
sum_select_full_range_join This property is required. float
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
sum_select_range This property is required. float
The total number of times the query has used a range search. This is the same as the select_range status variable.
sum_select_range_check This property is required. float
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
sum_select_scan This property is required. float
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
sum_sort_merge_passes This property is required. float
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
sum_sort_range This property is required. float
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
sum_sort_rows This property is required. float
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
sum_sort_scan This property is required. float
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
sum_timer_wait This property is required. float
The total amount of time that has been spent executing the query.
sum_warnings This property is required. float
The total number of warnings that have been encountered executing the query.
avgTimerWait This property is required. Number
The average execution time.
countStar This property is required. Number
The number Of times the query has been executed.
digest This property is required. String
The digest information of the normalized query.
digestText This property is required. String
The normalized query.
firstSeen This property is required. String
The date and time the query was first seen. If the table is truncated, the first seen value is reset.
heatWaveOffloaded This property is required. Number
The number of query executions offloaded to HeatWave.
heatWaveOutOfMemory This property is required. Number
The number of query executions with HeatWave out-of-memory errors.
lastSeen This property is required. String
The date and time the query was last seen.
maxControlledMemory This property is required. String
The maximum amount of controlled memory used by a statement during execution.
maxTimerWait This property is required. Number
The slowest the query has been executed.
maxTotalMemory This property is required. String
The maximum amount of memory used by a statement during execution.
minTimerWait This property is required. Number
The fastest the query has been executed.
quantile95 This property is required. Number
The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
quantile99 This property is required. Number
The 99th percentile of the query latency.
quantile999 This property is required. Number
The 99.9th percentile of the query latency.
schemaName This property is required. String
The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
sumCpuTime This property is required. String
The total amount of time spent on CPU for this statement.
sumCreatedTempDiskTables This property is required. Number
The total number of On-Disk internal temporary tables that have been created by the query.
sumCreatedTempTables This property is required. Number
The total number of internal temporary tables (in memory or on disk), which have been created by the query.
sumErrors This property is required. Number
The total number of errors that have been encountered executing the query.
sumLockTime This property is required. Number
The total amount of time that has been spent waiting for table locks.
sumNoGoodIndexUsed This property is required. Number
The total number of times no good index was used. This means that the extra column in The EXPLAIN output includes “Range Checked For Each Record.”
sumNoIndexUsed This property is required. Number
The total number of times no index was used to execute the query.
sumRowsAffected This property is required. Number
The total number of rows that have been modified by the query.
sumRowsExamined This property is required. Number
The total number of rows that have been examined by the query.
sumRowsSent This property is required. Number
The total number of rows that have been returned (sent) to the client.
sumSelectFullJoin This property is required. Number
The total number of joins that have performed full table scans as there was no join condition or no index for the join condition. This is the same as the select_full_join status variable.
sumSelectFullRangeJoin This property is required. Number
The total number of joins that use a full range search. This is the same as the select_full_range_join status variable.
sumSelectRange This property is required. Number
The total number of times the query has used a range search. This is the same as the select_range status variable.
sumSelectRangeCheck This property is required. Number
The total number of joins by the query where the join does not have an index that checks for the index usage after each row. This is the same as the select_range_check status variable.
sumSelectScan This property is required. Number
The total number of times the query has performed a full table scan on the first table in the join. This is the same as the select_scan status variable.
sumSortMergePasses This property is required. Number
The total number of sort merge passes that have been done to sort the result of the query. This is the same as the sort_merge_passes status variable.
sumSortRange This property is required. Number
The total number of times a sort was done using ranges. This is the same as the sort_range status variable.
sumSortRows This property is required. Number
The total number of rows sorted. This is the same as the sort_rowsStatus variable.
sumSortScan This property is required. Number
The total number of times a sort was done by scanning the table. This is the same as the sort_scan status variable.
sumTimerWait This property is required. Number
The total amount of time that has been spent executing the query.
sumWarnings This property is required. Number
The total number of warnings that have been encountered executing the query.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi