Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi
oci.DatabaseManagement.getManagedMySqlDatabaseSqlData
Explore with Pulumi AI
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,
});
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)
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
})
}
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,
});
});
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());
}
}
variables:
testManagedMySqlDatabaseSqlData:
fn::invoke:
function: oci:DatabaseManagement:getManagedMySqlDatabaseSqlData
arguments:
endTime: ${managedMySqlDatabaseSqlDataEndTime}
managedMySqlDatabaseId: ${testManagedMySqlDatabase.id}
startTime: ${managedMySqlDatabaseSqlDataStartTime}
filterColumn: ${managedMySqlDatabaseSqlDataFilterColumn}
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>
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]
func GetManagedMySqlDatabaseSqlData(ctx *Context, args *GetManagedMySqlDatabaseSqlDataArgs, opts ...InvokeOption) (*GetManagedMySqlDatabaseSqlDataResult, error)
func GetManagedMySqlDatabaseSqlDataOutput(ctx *Context, args *GetManagedMySqlDatabaseSqlDataOutputArgs, opts ...InvokeOption) GetManagedMySqlDatabaseSqlDataResultOutput
> 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)
}
public static CompletableFuture<GetManagedMySqlDatabaseSqlDataResult> getManagedMySqlDatabaseSqlData(GetManagedMySqlDatabaseSqlDataArgs args, InvokeOptions options)
public static Output<GetManagedMySqlDatabaseSqlDataResult> getManagedMySqlDatabaseSqlData(GetManagedMySqlDatabaseSqlDataArgs args, InvokeOptions options)
fn::invoke:
function: oci:DatabaseManagement/getManagedMySqlDatabaseSqlData:getManagedMySqlDatabaseSqlData
arguments:
# arguments dictionary
The following arguments are supported:
- End
Time 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'".
- Managed
My Sql Database Id This property is required. string - The OCID of the Managed MySQL Database.
- Start
Time 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'".
- Filter
Column 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.
Managed My Sql Database Sql Data Filter>
- End
Time 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'".
- Managed
My Sql Database Id This property is required. string - The OCID of the Managed MySQL Database.
- Start
Time 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'".
- Filter
Column 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.
Managed My Sql Database Sql Data Filter
- end
Time 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'".
- managed
My Sql Database Id This property is required. String - The OCID of the Managed MySQL Database.
- start
Time 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'".
- filter
Column 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.
Managed My Sql Database Sql Data Filter>
- end
Time 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'".
- managed
My Sql Database Id This property is required. string - The OCID of the Managed MySQL Database.
- start
Time 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'".
- filter
Column 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.
Managed My Sql Database Sql Data Filter[]
- 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.
Get Managed My Sql Database Sql Data Filter]
- end
Time 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'".
- managed
My Sql Database Id This property is required. String - The OCID of the Managed MySQL Database.
- start
Time 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'".
- filter
Column 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.
getManagedMySqlDatabaseSqlData Result
The following output properties are available:
- End
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Managed
My stringSql Database Id - My
Sql List<GetData Collections Managed My Sql Database Sql Data My Sql Data Collection> - The list of my_sql_data_collection.
- Start
Time string - Filter
Column string - Filters
List<Get
Managed My Sql Database Sql Data Filter>
- End
Time string - Id string
- The provider-assigned unique ID for this managed resource.
- Managed
My stringSql Database Id - My
Sql []GetData Collections Managed My Sql Database Sql Data My Sql Data Collection - The list of my_sql_data_collection.
- Start
Time string - Filter
Column string - Filters
[]Get
Managed My Sql Database Sql Data Filter
- end
Time String - id String
- The provider-assigned unique ID for this managed resource.
- managed
My StringSql Database Id - my
Sql List<GetData Collections Managed My Sql Database Sql Data My Sql Data Collection> - The list of my_sql_data_collection.
- start
Time String - filter
Column String - filters
List<Get
Managed My Sql Database Sql Data Filter>
- end
Time string - id string
- The provider-assigned unique ID for this managed resource.
- managed
My stringSql Database Id - my
Sql GetData Collections Managed My Sql Database Sql Data My Sql Data Collection[] - The list of my_sql_data_collection.
- start
Time string - filter
Column string - filters
Get
Managed My Sql Database Sql Data Filter[]
- end_
time str - id str
- The provider-assigned unique ID for this managed resource.
- managed_
my_ strsql_ database_ id - my_
sql_ Sequence[databasemanagement.data_ collections Get Managed My Sql Database Sql Data My Sql Data Collection] - The list of my_sql_data_collection.
- start_
time str - filter_
column str - filters
Sequence[databasemanagement.
Get Managed My Sql Database Sql Data Filter]
- end
Time String - id String
- The provider-assigned unique ID for this managed resource.
- managed
My StringSql Database Id - my
Sql List<Property Map>Data Collections - The list of my_sql_data_collection.
- start
Time String - filter
Column String - filters List<Property Map>
Supporting Types
GetManagedMySqlDatabaseSqlDataFilter
GetManagedMySqlDatabaseSqlDataMySqlDataCollection
- Items
This property is required. List<GetManaged My Sql Database Sql Data My Sql Data Collection Item> - The list of SQLDataSummary records.
- Items
This property is required. []GetManaged My Sql Database Sql Data My Sql Data Collection Item - The list of SQLDataSummary records.
- items
This property is required. List<GetManaged My Sql Database Sql Data My Sql Data Collection Item> - The list of SQLDataSummary records.
- items
This property is required. GetManaged My Sql Database Sql Data My Sql Data Collection Item[] - The list of SQLDataSummary records.
- items
This property is required. Sequence[databasemanagement.Get Managed My Sql Database Sql Data My Sql Data Collection Item] - The list of SQLDataSummary records.
- items
This property is required. List<Property Map> - The list of SQLDataSummary records.
GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItem
- Avg
Timer Wait This property is required. double - The average execution time.
- Count
Star 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.
- Digest
Text This property is required. string - The normalized query.
- First
Seen 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.
- Heat
Wave Offloaded This property is required. double - The number of query executions offloaded to HeatWave.
- Heat
Wave Out Of Memory This property is required. double - The number of query executions with HeatWave out-of-memory errors.
- Last
Seen This property is required. string - The date and time the query was last seen.
- Max
Controlled Memory This property is required. string - The maximum amount of controlled memory used by a statement during execution.
- Max
Timer Wait This property is required. double - The slowest the query has been executed.
- Max
Total Memory This property is required. string - The maximum amount of memory used by a statement during execution.
- Min
Timer Wait 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.
- Schema
Name 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.
- Sum
Cpu Time This property is required. string - The total amount of time spent on CPU for this statement.
- Sum
Created Temp Disk Tables This property is required. double - The total number of On-Disk internal temporary tables that have been created by the query.
- Sum
Created Temp Tables This property is required. double - 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. double - The total number of errors that have been encountered executing the query.
- Sum
Lock Time This property is required. double - The total amount of time that has been spent waiting for table locks.
- Sum
No Good Index Used 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.”
- Sum
No Index Used This property is required. double - The total number of times no index was used to execute the query.
- Sum
Rows Affected This property is required. double - The total number of rows that have been modified by the query.
- Sum
Rows Examined This property is required. double - The total number of rows that have been examined by the query.
- Sum
Rows Sent This property is required. double - The total number of rows that have been returned (sent) to the client.
- Sum
Select Full Join 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.
- Sum
Select Full Range Join 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.
- Sum
Select Range 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.
- Sum
Select Range Check 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.
- Sum
Select Scan 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.
- Sum
Sort Merge Passes 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.
- Sum
Sort Range 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.
- Sum
Sort Rows This property is required. double - The total number of rows sorted. This is the same as the sort_rowsStatus variable.
- Sum
Sort Scan 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.
- Sum
Timer Wait This property is required. double - The total amount of time that has been spent executing the query.
- Sum
Warnings This property is required. double - The total number of warnings that have been encountered executing the query.
- Avg
Timer Wait This property is required. float64 - The average execution time.
- Count
Star 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.
- Digest
Text This property is required. string - The normalized query.
- First
Seen 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.
- Heat
Wave Offloaded This property is required. float64 - The number of query executions offloaded to HeatWave.
- Heat
Wave Out Of Memory This property is required. float64 - The number of query executions with HeatWave out-of-memory errors.
- Last
Seen This property is required. string - The date and time the query was last seen.
- Max
Controlled Memory This property is required. string - The maximum amount of controlled memory used by a statement during execution.
- Max
Timer Wait This property is required. float64 - The slowest the query has been executed.
- Max
Total Memory This property is required. string - The maximum amount of memory used by a statement during execution.
- Min
Timer Wait 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.
- Schema
Name 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.
- Sum
Cpu Time This property is required. string - The total amount of time spent on CPU for this statement.
- Sum
Created Temp Disk Tables This property is required. float64 - The total number of On-Disk internal temporary tables that have been created by the query.
- Sum
Created Temp Tables This property is required. float64 - 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. float64 - The total number of errors that have been encountered executing the query.
- Sum
Lock Time This property is required. float64 - The total amount of time that has been spent waiting for table locks.
- Sum
No Good Index Used 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.”
- Sum
No Index Used This property is required. float64 - The total number of times no index was used to execute the query.
- Sum
Rows Affected This property is required. float64 - The total number of rows that have been modified by the query.
- Sum
Rows Examined This property is required. float64 - The total number of rows that have been examined by the query.
- Sum
Rows Sent This property is required. float64 - The total number of rows that have been returned (sent) to the client.
- Sum
Select Full Join 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.
- Sum
Select Full Range Join 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.
- Sum
Select Range 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.
- Sum
Select Range Check 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.
- Sum
Select Scan 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.
- Sum
Sort Merge Passes 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.
- Sum
Sort Range 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.
- Sum
Sort Rows This property is required. float64 - The total number of rows sorted. This is the same as the sort_rowsStatus variable.
- Sum
Sort Scan 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.
- Sum
Timer Wait This property is required. float64 - The total amount of time that has been spent executing the query.
- Sum
Warnings This property is required. float64 - The total number of warnings that have been encountered executing the query.
- avg
Timer Wait This property is required. Double - The average execution time.
- count
Star 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.
- digest
Text This property is required. String - The normalized query.
- first
Seen 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.
- heat
Wave Offloaded This property is required. Double - The number of query executions offloaded to HeatWave.
- heat
Wave Out Of Memory This property is required. Double - The number of query executions with HeatWave out-of-memory errors.
- last
Seen This property is required. String - The date and time the query was last seen.
- max
Controlled Memory This property is required. String - The maximum amount of controlled memory used by a statement during execution.
- max
Timer Wait This property is required. Double - The slowest the query has been executed.
- max
Total Memory This property is required. String - The maximum amount of memory used by a statement during execution.
- min
Timer Wait 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.
- schema
Name 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.
- sum
Cpu Time This property is required. String - The total amount of time spent on CPU for this statement.
- sum
Created Temp Disk Tables This property is required. Double - The total number of On-Disk internal temporary tables that have been created by the query.
- sum
Created Temp Tables This property is required. Double - 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. Double - The total number of errors that have been encountered executing the query.
- sum
Lock Time This property is required. Double - The total amount of time that has been spent waiting for table locks.
- sum
No Good Index Used 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.”
- sum
No Index Used This property is required. Double - The total number of times no index was used to execute the query.
- sum
Rows Affected This property is required. Double - The total number of rows that have been modified by the query.
- sum
Rows Examined This property is required. Double - The total number of rows that have been examined by the query.
- sum
Rows Sent This property is required. Double - The total number of rows that have been returned (sent) to the client.
- sum
Select Full Join 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.
- sum
Select Full Range Join 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.
- sum
Select Range 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.
- sum
Select Range Check 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.
- sum
Select Scan 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.
- sum
Sort Merge Passes 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.
- sum
Sort Range 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.
- sum
Sort Rows This property is required. Double - The total number of rows sorted. This is the same as the sort_rowsStatus variable.
- sum
Sort Scan 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.
- sum
Timer Wait This property is required. Double - The total amount of time that has been spent executing the query.
- sum
Warnings This property is required. Double - The total number of warnings that have been encountered executing the query.
- avg
Timer Wait This property is required. number - The average execution time.
- count
Star 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.
- digest
Text This property is required. string - The normalized query.
- first
Seen 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.
- heat
Wave Offloaded This property is required. number - The number of query executions offloaded to HeatWave.
- heat
Wave Out Of Memory This property is required. number - The number of query executions with HeatWave out-of-memory errors.
- last
Seen This property is required. string - The date and time the query was last seen.
- max
Controlled Memory This property is required. string - The maximum amount of controlled memory used by a statement during execution.
- max
Timer Wait This property is required. number - The slowest the query has been executed.
- max
Total Memory This property is required. string - The maximum amount of memory used by a statement during execution.
- min
Timer Wait 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.
- schema
Name 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.
- sum
Cpu Time This property is required. string - The total amount of time spent on CPU for this statement.
- sum
Created Temp Disk Tables This property is required. number - The total number of On-Disk internal temporary tables that have been created by the query.
- sum
Created Temp Tables This property is required. number - 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. number - The total number of errors that have been encountered executing the query.
- sum
Lock Time This property is required. number - The total amount of time that has been spent waiting for table locks.
- sum
No Good Index Used 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.”
- sum
No Index Used This property is required. number - The total number of times no index was used to execute the query.
- sum
Rows Affected This property is required. number - The total number of rows that have been modified by the query.
- sum
Rows Examined This property is required. number - The total number of rows that have been examined by the query.
- sum
Rows Sent This property is required. number - The total number of rows that have been returned (sent) to the client.
- sum
Select Full Join 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.
- sum
Select Full Range Join 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.
- sum
Select Range 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.
- sum
Select Range Check 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.
- sum
Select Scan 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.
- sum
Sort Merge Passes 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.
- sum
Sort Range 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.
- sum
Sort Rows This property is required. number - The total number of rows sorted. This is the same as the sort_rowsStatus variable.
- sum
Sort Scan 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.
- sum
Timer Wait This property is required. number - The total amount of time that has been spent executing the query.
- sum
Warnings 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.
- avg
Timer Wait This property is required. Number - The average execution time.
- count
Star 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.
- digest
Text This property is required. String - The normalized query.
- first
Seen 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.
- heat
Wave Offloaded This property is required. Number - The number of query executions offloaded to HeatWave.
- heat
Wave Out Of Memory This property is required. Number - The number of query executions with HeatWave out-of-memory errors.
- last
Seen This property is required. String - The date and time the query was last seen.
- max
Controlled Memory This property is required. String - The maximum amount of controlled memory used by a statement during execution.
- max
Timer Wait This property is required. Number - The slowest the query has been executed.
- max
Total Memory This property is required. String - The maximum amount of memory used by a statement during execution.
- min
Timer Wait 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.
- schema
Name 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.
- sum
Cpu Time This property is required. String - The total amount of time spent on CPU for this statement.
- sum
Created Temp Disk Tables This property is required. Number - The total number of On-Disk internal temporary tables that have been created by the query.
- sum
Created Temp Tables This property is required. Number - 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. Number - The total number of errors that have been encountered executing the query.
- sum
Lock Time This property is required. Number - The total amount of time that has been spent waiting for table locks.
- sum
No Good Index Used 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.”
- sum
No Index Used This property is required. Number - The total number of times no index was used to execute the query.
- sum
Rows Affected This property is required. Number - The total number of rows that have been modified by the query.
- sum
Rows Examined This property is required. Number - The total number of rows that have been examined by the query.
- sum
Rows Sent This property is required. Number - The total number of rows that have been returned (sent) to the client.
- sum
Select Full Join 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.
- sum
Select Full Range Join 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.
- sum
Select Range 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.
- sum
Select Range Check 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.
- sum
Select Scan 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.
- sum
Sort Merge Passes 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.
- sum
Sort Range 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.
- sum
Sort Rows This property is required. Number - The total number of rows sorted. This is the same as the sort_rowsStatus variable.
- sum
Sort Scan 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.
- sum
Timer Wait This property is required. Number - The total amount of time that has been spent executing the query.
- sum
Warnings 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.