Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi
oci.DatabaseManagement.getManagedDatabaseSqlTuningAdvisorTasksFindings
Explore with Pulumi AI
This data source provides the list of Managed Database Sql Tuning Advisor Tasks Findings in Oracle Cloud Infrastructure Database Management service.
Gets an array of the details of the findings that match specific filters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseSqlTuningAdvisorTasksFindings = oci.DatabaseManagement.getManagedDatabaseSqlTuningAdvisorTasksFindings({
    managedDatabaseId: testManagedDatabase.id,
    sqlTuningAdvisorTaskId: testSqlTuningAdvisorTask.id,
    beginExecId: testBeginExec.id,
    endExecId: testEndExec.id,
    findingFilter: managedDatabaseSqlTuningAdvisorTasksFindingFindingFilter,
    indexHashFilter: managedDatabaseSqlTuningAdvisorTasksFindingIndexHashFilter,
    opcNamedCredentialId: managedDatabaseSqlTuningAdvisorTasksFindingOpcNamedCredentialId,
    searchPeriod: managedDatabaseSqlTuningAdvisorTasksFindingSearchPeriod,
    statsHashFilter: managedDatabaseSqlTuningAdvisorTasksFindingStatsHashFilter,
});
import pulumi
import pulumi_oci as oci
test_managed_database_sql_tuning_advisor_tasks_findings = oci.DatabaseManagement.get_managed_database_sql_tuning_advisor_tasks_findings(managed_database_id=test_managed_database["id"],
    sql_tuning_advisor_task_id=test_sql_tuning_advisor_task["id"],
    begin_exec_id=test_begin_exec["id"],
    end_exec_id=test_end_exec["id"],
    finding_filter=managed_database_sql_tuning_advisor_tasks_finding_finding_filter,
    index_hash_filter=managed_database_sql_tuning_advisor_tasks_finding_index_hash_filter,
    opc_named_credential_id=managed_database_sql_tuning_advisor_tasks_finding_opc_named_credential_id,
    search_period=managed_database_sql_tuning_advisor_tasks_finding_search_period,
    stats_hash_filter=managed_database_sql_tuning_advisor_tasks_finding_stats_hash_filter)
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.GetManagedDatabaseSqlTuningAdvisorTasksFindings(ctx, &databasemanagement.GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs{
			ManagedDatabaseId:      testManagedDatabase.Id,
			SqlTuningAdvisorTaskId: testSqlTuningAdvisorTask.Id,
			BeginExecId:            pulumi.StringRef(testBeginExec.Id),
			EndExecId:              pulumi.StringRef(testEndExec.Id),
			FindingFilter:          pulumi.StringRef(managedDatabaseSqlTuningAdvisorTasksFindingFindingFilter),
			IndexHashFilter:        pulumi.StringRef(managedDatabaseSqlTuningAdvisorTasksFindingIndexHashFilter),
			OpcNamedCredentialId:   pulumi.StringRef(managedDatabaseSqlTuningAdvisorTasksFindingOpcNamedCredentialId),
			SearchPeriod:           pulumi.StringRef(managedDatabaseSqlTuningAdvisorTasksFindingSearchPeriod),
			StatsHashFilter:        pulumi.StringRef(managedDatabaseSqlTuningAdvisorTasksFindingStatsHashFilter),
		}, 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 testManagedDatabaseSqlTuningAdvisorTasksFindings = Oci.DatabaseManagement.GetManagedDatabaseSqlTuningAdvisorTasksFindings.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        SqlTuningAdvisorTaskId = testSqlTuningAdvisorTask.Id,
        BeginExecId = testBeginExec.Id,
        EndExecId = testEndExec.Id,
        FindingFilter = managedDatabaseSqlTuningAdvisorTasksFindingFindingFilter,
        IndexHashFilter = managedDatabaseSqlTuningAdvisorTasksFindingIndexHashFilter,
        OpcNamedCredentialId = managedDatabaseSqlTuningAdvisorTasksFindingOpcNamedCredentialId,
        SearchPeriod = managedDatabaseSqlTuningAdvisorTasksFindingSearchPeriod,
        StatsHashFilter = managedDatabaseSqlTuningAdvisorTasksFindingStatsHashFilter,
    });
});
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.GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs;
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 testManagedDatabaseSqlTuningAdvisorTasksFindings = DatabaseManagementFunctions.getManagedDatabaseSqlTuningAdvisorTasksFindings(GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .sqlTuningAdvisorTaskId(testSqlTuningAdvisorTask.id())
            .beginExecId(testBeginExec.id())
            .endExecId(testEndExec.id())
            .findingFilter(managedDatabaseSqlTuningAdvisorTasksFindingFindingFilter)
            .indexHashFilter(managedDatabaseSqlTuningAdvisorTasksFindingIndexHashFilter)
            .opcNamedCredentialId(managedDatabaseSqlTuningAdvisorTasksFindingOpcNamedCredentialId)
            .searchPeriod(managedDatabaseSqlTuningAdvisorTasksFindingSearchPeriod)
            .statsHashFilter(managedDatabaseSqlTuningAdvisorTasksFindingStatsHashFilter)
            .build());
    }
}
variables:
  testManagedDatabaseSqlTuningAdvisorTasksFindings:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseSqlTuningAdvisorTasksFindings
      arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        sqlTuningAdvisorTaskId: ${testSqlTuningAdvisorTask.id}
        beginExecId: ${testBeginExec.id}
        endExecId: ${testEndExec.id}
        findingFilter: ${managedDatabaseSqlTuningAdvisorTasksFindingFindingFilter}
        indexHashFilter: ${managedDatabaseSqlTuningAdvisorTasksFindingIndexHashFilter}
        opcNamedCredentialId: ${managedDatabaseSqlTuningAdvisorTasksFindingOpcNamedCredentialId}
        searchPeriod: ${managedDatabaseSqlTuningAdvisorTasksFindingSearchPeriod}
        statsHashFilter: ${managedDatabaseSqlTuningAdvisorTasksFindingStatsHashFilter}
Using getManagedDatabaseSqlTuningAdvisorTasksFindings
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 getManagedDatabaseSqlTuningAdvisorTasksFindings(args: GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult>
function getManagedDatabaseSqlTuningAdvisorTasksFindingsOutput(args: GetManagedDatabaseSqlTuningAdvisorTasksFindingsOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult>def get_managed_database_sql_tuning_advisor_tasks_findings(begin_exec_id: Optional[str] = None,
                                                           end_exec_id: Optional[str] = None,
                                                           filters: Optional[Sequence[_databasemanagement.GetManagedDatabaseSqlTuningAdvisorTasksFindingsFilter]] = None,
                                                           finding_filter: Optional[str] = None,
                                                           index_hash_filter: Optional[str] = None,
                                                           managed_database_id: Optional[str] = None,
                                                           opc_named_credential_id: Optional[str] = None,
                                                           search_period: Optional[str] = None,
                                                           sql_tuning_advisor_task_id: Optional[str] = None,
                                                           stats_hash_filter: Optional[str] = None,
                                                           opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult
def get_managed_database_sql_tuning_advisor_tasks_findings_output(begin_exec_id: Optional[pulumi.Input[str]] = None,
                                                           end_exec_id: Optional[pulumi.Input[str]] = None,
                                                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetManagedDatabaseSqlTuningAdvisorTasksFindingsFilterArgs]]]] = None,
                                                           finding_filter: Optional[pulumi.Input[str]] = None,
                                                           index_hash_filter: Optional[pulumi.Input[str]] = None,
                                                           managed_database_id: Optional[pulumi.Input[str]] = None,
                                                           opc_named_credential_id: Optional[pulumi.Input[str]] = None,
                                                           search_period: Optional[pulumi.Input[str]] = None,
                                                           sql_tuning_advisor_task_id: Optional[pulumi.Input[str]] = None,
                                                           stats_hash_filter: Optional[pulumi.Input[str]] = None,
                                                           opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult]func GetManagedDatabaseSqlTuningAdvisorTasksFindings(ctx *Context, args *GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs, opts ...InvokeOption) (*GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult, error)
func GetManagedDatabaseSqlTuningAdvisorTasksFindingsOutput(ctx *Context, args *GetManagedDatabaseSqlTuningAdvisorTasksFindingsOutputArgs, opts ...InvokeOption) GetManagedDatabaseSqlTuningAdvisorTasksFindingsResultOutput> Note: This function is named GetManagedDatabaseSqlTuningAdvisorTasksFindings in the Go SDK.
public static class GetManagedDatabaseSqlTuningAdvisorTasksFindings 
{
    public static Task<GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult> InvokeAsync(GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult> Invoke(GetManagedDatabaseSqlTuningAdvisorTasksFindingsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult> getManagedDatabaseSqlTuningAdvisorTasksFindings(GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseSqlTuningAdvisorTasksFindingsResult> getManagedDatabaseSqlTuningAdvisorTasksFindings(GetManagedDatabaseSqlTuningAdvisorTasksFindingsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseSqlTuningAdvisorTasksFindings:getManagedDatabaseSqlTuningAdvisorTasksFindings
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- SqlTuning stringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- BeginExec stringId 
- The optional greater than or equal to filter on the execution ID related to a specific SQL Tuning Advisor task.
- EndExec stringId 
- The optional less than or equal to query parameter to filter on the execution ID related to a specific SQL Tuning Advisor task.
- Filters
List<GetManaged Database Sql Tuning Advisor Tasks Findings Filter> 
- FindingFilter string
- The filter used to display specific findings in the report.
- IndexHash stringFilter 
- The hash value of the index table name.
- OpcNamed stringCredential Id 
- The OCID of the Named Credential.
- SearchPeriod string
- The search period during which the API will search for begin and end exec id, if not supplied. Unused if beginExecId and endExecId optional query params are both supplied.
- StatsHash stringFilter 
- The hash value of the object for the statistic finding search.
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- SqlTuning stringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- BeginExec stringId 
- The optional greater than or equal to filter on the execution ID related to a specific SQL Tuning Advisor task.
- EndExec stringId 
- The optional less than or equal to query parameter to filter on the execution ID related to a specific SQL Tuning Advisor task.
- Filters
[]GetManaged Database Sql Tuning Advisor Tasks Findings Filter 
- FindingFilter string
- The filter used to display specific findings in the report.
- IndexHash stringFilter 
- The hash value of the index table name.
- OpcNamed stringCredential Id 
- The OCID of the Named Credential.
- SearchPeriod string
- The search period during which the API will search for begin and end exec id, if not supplied. Unused if beginExecId and endExecId optional query params are both supplied.
- StatsHash stringFilter 
- The hash value of the object for the statistic finding search.
- managedDatabase StringId 
- The OCID of the Managed Database.
- sqlTuning StringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- beginExec StringId 
- The optional greater than or equal to filter on the execution ID related to a specific SQL Tuning Advisor task.
- endExec StringId 
- The optional less than or equal to query parameter to filter on the execution ID related to a specific SQL Tuning Advisor task.
- filters
List<GetManaged Database Sql Tuning Advisor Tasks Findings Filter> 
- findingFilter String
- The filter used to display specific findings in the report.
- indexHash StringFilter 
- The hash value of the index table name.
- opcNamed StringCredential Id 
- The OCID of the Named Credential.
- searchPeriod String
- The search period during which the API will search for begin and end exec id, if not supplied. Unused if beginExecId and endExecId optional query params are both supplied.
- statsHash StringFilter 
- The hash value of the object for the statistic finding search.
- managedDatabase stringId 
- The OCID of the Managed Database.
- sqlTuning stringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- beginExec stringId 
- The optional greater than or equal to filter on the execution ID related to a specific SQL Tuning Advisor task.
- endExec stringId 
- The optional less than or equal to query parameter to filter on the execution ID related to a specific SQL Tuning Advisor task.
- filters
GetManaged Database Sql Tuning Advisor Tasks Findings Filter[] 
- findingFilter string
- The filter used to display specific findings in the report.
- indexHash stringFilter 
- The hash value of the index table name.
- opcNamed stringCredential Id 
- The OCID of the Named Credential.
- searchPeriod string
- The search period during which the API will search for begin and end exec id, if not supplied. Unused if beginExecId and endExecId optional query params are both supplied.
- statsHash stringFilter 
- The hash value of the object for the statistic finding search.
- managed_database_ strid 
- The OCID of the Managed Database.
- sql_tuning_ stradvisor_ task_ id 
- The SQL tuning task identifier. This is not the OCID.
- begin_exec_ strid 
- The optional greater than or equal to filter on the execution ID related to a specific SQL Tuning Advisor task.
- end_exec_ strid 
- The optional less than or equal to query parameter to filter on the execution ID related to a specific SQL Tuning Advisor task.
- filters
Sequence[databasemanagement.Get Managed Database Sql Tuning Advisor Tasks Findings Filter] 
- finding_filter str
- The filter used to display specific findings in the report.
- index_hash_ strfilter 
- The hash value of the index table name.
- opc_named_ strcredential_ id 
- The OCID of the Named Credential.
- search_period str
- The search period during which the API will search for begin and end exec id, if not supplied. Unused if beginExecId and endExecId optional query params are both supplied.
- stats_hash_ strfilter 
- The hash value of the object for the statistic finding search.
- managedDatabase StringId 
- The OCID of the Managed Database.
- sqlTuning StringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- beginExec StringId 
- The optional greater than or equal to filter on the execution ID related to a specific SQL Tuning Advisor task.
- endExec StringId 
- The optional less than or equal to query parameter to filter on the execution ID related to a specific SQL Tuning Advisor task.
- filters List<Property Map>
- findingFilter String
- The filter used to display specific findings in the report.
- indexHash StringFilter 
- The hash value of the index table name.
- opcNamed StringCredential Id 
- The OCID of the Named Credential.
- searchPeriod String
- The search period during which the API will search for begin and end exec id, if not supplied. Unused if beginExecId and endExecId optional query params are both supplied.
- statsHash StringFilter 
- The hash value of the object for the statistic finding search.
getManagedDatabaseSqlTuningAdvisorTasksFindings Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- SqlTuning List<GetAdvisor Task Finding Collections Managed Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection> 
- The list of sql_tuning_advisor_task_finding_collection.
- SqlTuning stringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- BeginExec stringId 
- EndExec stringId 
- Filters
List<GetManaged Database Sql Tuning Advisor Tasks Findings Filter> 
- FindingFilter string
- IndexHash stringFilter 
- OpcNamed stringCredential Id 
- SearchPeriod string
- StatsHash stringFilter 
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- SqlTuning []GetAdvisor Task Finding Collections Managed Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection 
- The list of sql_tuning_advisor_task_finding_collection.
- SqlTuning stringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- BeginExec stringId 
- EndExec stringId 
- Filters
[]GetManaged Database Sql Tuning Advisor Tasks Findings Filter 
- FindingFilter string
- IndexHash stringFilter 
- OpcNamed stringCredential Id 
- SearchPeriod string
- StatsHash stringFilter 
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- sqlTuning List<GetAdvisor Task Finding Collections Managed Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection> 
- The list of sql_tuning_advisor_task_finding_collection.
- sqlTuning StringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- beginExec StringId 
- endExec StringId 
- filters
List<GetManaged Database Sql Tuning Advisor Tasks Findings Filter> 
- findingFilter String
- indexHash StringFilter 
- opcNamed StringCredential Id 
- searchPeriod String
- statsHash StringFilter 
- id string
- The provider-assigned unique ID for this managed resource.
- managedDatabase stringId 
- sqlTuning GetAdvisor Task Finding Collections Managed Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection[] 
- The list of sql_tuning_advisor_task_finding_collection.
- sqlTuning stringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- beginExec stringId 
- endExec stringId 
- filters
GetManaged Database Sql Tuning Advisor Tasks Findings Filter[] 
- findingFilter string
- indexHash stringFilter 
- opcNamed stringCredential Id 
- searchPeriod string
- statsHash stringFilter 
- id str
- The provider-assigned unique ID for this managed resource.
- managed_database_ strid 
- sql_tuning_ Sequence[databasemanagement.advisor_ task_ finding_ collections Get Managed Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection] 
- The list of sql_tuning_advisor_task_finding_collection.
- sql_tuning_ stradvisor_ task_ id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- begin_exec_ strid 
- end_exec_ strid 
- filters
Sequence[databasemanagement.Get Managed Database Sql Tuning Advisor Tasks Findings Filter] 
- finding_filter str
- index_hash_ strfilter 
- opc_named_ strcredential_ id 
- search_period str
- stats_hash_ strfilter 
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- sqlTuning List<Property Map>Advisor Task Finding Collections 
- The list of sql_tuning_advisor_task_finding_collection.
- sqlTuning StringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- beginExec StringId 
- endExec StringId 
- filters List<Property Map>
- findingFilter String
- indexHash StringFilter 
- opcNamed StringCredential Id 
- searchPeriod String
- statsHash StringFilter 
Supporting Types
GetManagedDatabaseSqlTuningAdvisorTasksFindingsFilter        
GetManagedDatabaseSqlTuningAdvisorTasksFindingsSqlTuningAdvisorTaskFindingCollection             
- Items
List<GetManaged Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection Item> 
- An array of the findings for a tuning task.
- Items
[]GetManaged Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection Item 
- An array of the findings for a tuning task.
- items
List<GetManaged Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection Item> 
- An array of the findings for a tuning task.
- items
GetManaged Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection Item[] 
- An array of the findings for a tuning task.
- items
Sequence[databasemanagement.Get Managed Database Sql Tuning Advisor Tasks Findings Sql Tuning Advisor Task Finding Collection Item] 
- An array of the findings for a tuning task.
- items List<Property Map>
- An array of the findings for a tuning task.
GetManagedDatabaseSqlTuningAdvisorTasksFindingsSqlTuningAdvisorTaskFindingCollectionItem              
- DbTime doubleBenefit 
- The time benefit (in seconds) for the highest-rated finding for this object.
- IsAlternative boolPlan Finding Present 
- Indicates whether an alternative execution plan was reported for this SQL statement.
- IsError boolFinding Present 
- Indicates whether there is an error in this SQL statement.
- IsIndex boolFinding Present 
- Indicates whether an index recommendation was reported for this SQL statement.
- IsMiscellaneous boolFinding Present 
- Indicates whether a miscellaneous finding was reported for this SQL statement.
- IsRestructure boolSql Finding Present 
- Indicates whether a restructure SQL recommendation was reported for this SQL statement.
- IsSql boolProfile Finding Implemented 
- Indicates whether a SQL Profile recommendation has been implemented for this SQL statement.
- IsSql boolProfile Finding Present 
- Indicates whether a SQL Profile recommendation was reported for this SQL statement.
- IsStats boolFinding Present 
- Indicates whether a statistics recommendation was reported for this SQL statement.
- IsTimeout boolFinding Present 
- Indicates whether the task timed out.
- ParsingSchema string
- The parsing schema of the object.
- PerExecution intPercentage 
- The per-execution percentage benefit.
- SqlKey string
- The unique key of this SQL statement.
- SqlText string
- The text of the SQL statement.
- SqlTuning stringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- SqlTuning stringAdvisor Task Object Execution Id 
- The execution id of the analyzed SQL object. This is not the OCID.
- SqlTuning stringAdvisor Task Object Id 
- The key of the object to which these recommendations apply. This is not the OCID.
- DbTime float64Benefit 
- The time benefit (in seconds) for the highest-rated finding for this object.
- IsAlternative boolPlan Finding Present 
- Indicates whether an alternative execution plan was reported for this SQL statement.
- IsError boolFinding Present 
- Indicates whether there is an error in this SQL statement.
- IsIndex boolFinding Present 
- Indicates whether an index recommendation was reported for this SQL statement.
- IsMiscellaneous boolFinding Present 
- Indicates whether a miscellaneous finding was reported for this SQL statement.
- IsRestructure boolSql Finding Present 
- Indicates whether a restructure SQL recommendation was reported for this SQL statement.
- IsSql boolProfile Finding Implemented 
- Indicates whether a SQL Profile recommendation has been implemented for this SQL statement.
- IsSql boolProfile Finding Present 
- Indicates whether a SQL Profile recommendation was reported for this SQL statement.
- IsStats boolFinding Present 
- Indicates whether a statistics recommendation was reported for this SQL statement.
- IsTimeout boolFinding Present 
- Indicates whether the task timed out.
- ParsingSchema string
- The parsing schema of the object.
- PerExecution intPercentage 
- The per-execution percentage benefit.
- SqlKey string
- The unique key of this SQL statement.
- SqlText string
- The text of the SQL statement.
- SqlTuning stringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- SqlTuning stringAdvisor Task Object Execution Id 
- The execution id of the analyzed SQL object. This is not the OCID.
- SqlTuning stringAdvisor Task Object Id 
- The key of the object to which these recommendations apply. This is not the OCID.
- dbTime DoubleBenefit 
- The time benefit (in seconds) for the highest-rated finding for this object.
- isAlternative BooleanPlan Finding Present 
- Indicates whether an alternative execution plan was reported for this SQL statement.
- isError BooleanFinding Present 
- Indicates whether there is an error in this SQL statement.
- isIndex BooleanFinding Present 
- Indicates whether an index recommendation was reported for this SQL statement.
- isMiscellaneous BooleanFinding Present 
- Indicates whether a miscellaneous finding was reported for this SQL statement.
- isRestructure BooleanSql Finding Present 
- Indicates whether a restructure SQL recommendation was reported for this SQL statement.
- isSql BooleanProfile Finding Implemented 
- Indicates whether a SQL Profile recommendation has been implemented for this SQL statement.
- isSql BooleanProfile Finding Present 
- Indicates whether a SQL Profile recommendation was reported for this SQL statement.
- isStats BooleanFinding Present 
- Indicates whether a statistics recommendation was reported for this SQL statement.
- isTimeout BooleanFinding Present 
- Indicates whether the task timed out.
- parsingSchema String
- The parsing schema of the object.
- perExecution IntegerPercentage 
- The per-execution percentage benefit.
- sqlKey String
- The unique key of this SQL statement.
- sqlText String
- The text of the SQL statement.
- sqlTuning StringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- sqlTuning StringAdvisor Task Object Execution Id 
- The execution id of the analyzed SQL object. This is not the OCID.
- sqlTuning StringAdvisor Task Object Id 
- The key of the object to which these recommendations apply. This is not the OCID.
- dbTime numberBenefit 
- The time benefit (in seconds) for the highest-rated finding for this object.
- isAlternative booleanPlan Finding Present 
- Indicates whether an alternative execution plan was reported for this SQL statement.
- isError booleanFinding Present 
- Indicates whether there is an error in this SQL statement.
- isIndex booleanFinding Present 
- Indicates whether an index recommendation was reported for this SQL statement.
- isMiscellaneous booleanFinding Present 
- Indicates whether a miscellaneous finding was reported for this SQL statement.
- isRestructure booleanSql Finding Present 
- Indicates whether a restructure SQL recommendation was reported for this SQL statement.
- isSql booleanProfile Finding Implemented 
- Indicates whether a SQL Profile recommendation has been implemented for this SQL statement.
- isSql booleanProfile Finding Present 
- Indicates whether a SQL Profile recommendation was reported for this SQL statement.
- isStats booleanFinding Present 
- Indicates whether a statistics recommendation was reported for this SQL statement.
- isTimeout booleanFinding Present 
- Indicates whether the task timed out.
- parsingSchema string
- The parsing schema of the object.
- perExecution numberPercentage 
- The per-execution percentage benefit.
- sqlKey string
- The unique key of this SQL statement.
- sqlText string
- The text of the SQL statement.
- sqlTuning stringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- sqlTuning stringAdvisor Task Object Execution Id 
- The execution id of the analyzed SQL object. This is not the OCID.
- sqlTuning stringAdvisor Task Object Id 
- The key of the object to which these recommendations apply. This is not the OCID.
- db_time_ floatbenefit 
- The time benefit (in seconds) for the highest-rated finding for this object.
- is_alternative_ boolplan_ finding_ present 
- Indicates whether an alternative execution plan was reported for this SQL statement.
- is_error_ boolfinding_ present 
- Indicates whether there is an error in this SQL statement.
- is_index_ boolfinding_ present 
- Indicates whether an index recommendation was reported for this SQL statement.
- is_miscellaneous_ boolfinding_ present 
- Indicates whether a miscellaneous finding was reported for this SQL statement.
- is_restructure_ boolsql_ finding_ present 
- Indicates whether a restructure SQL recommendation was reported for this SQL statement.
- is_sql_ boolprofile_ finding_ implemented 
- Indicates whether a SQL Profile recommendation has been implemented for this SQL statement.
- is_sql_ boolprofile_ finding_ present 
- Indicates whether a SQL Profile recommendation was reported for this SQL statement.
- is_stats_ boolfinding_ present 
- Indicates whether a statistics recommendation was reported for this SQL statement.
- is_timeout_ boolfinding_ present 
- Indicates whether the task timed out.
- parsing_schema str
- The parsing schema of the object.
- per_execution_ intpercentage 
- The per-execution percentage benefit.
- sql_key str
- The unique key of this SQL statement.
- sql_text str
- The text of the SQL statement.
- sql_tuning_ stradvisor_ task_ id 
- The SQL tuning task identifier. This is not the OCID.
- sql_tuning_ stradvisor_ task_ object_ execution_ id 
- The execution id of the analyzed SQL object. This is not the OCID.
- sql_tuning_ stradvisor_ task_ object_ id 
- The key of the object to which these recommendations apply. This is not the OCID.
- dbTime NumberBenefit 
- The time benefit (in seconds) for the highest-rated finding for this object.
- isAlternative BooleanPlan Finding Present 
- Indicates whether an alternative execution plan was reported for this SQL statement.
- isError BooleanFinding Present 
- Indicates whether there is an error in this SQL statement.
- isIndex BooleanFinding Present 
- Indicates whether an index recommendation was reported for this SQL statement.
- isMiscellaneous BooleanFinding Present 
- Indicates whether a miscellaneous finding was reported for this SQL statement.
- isRestructure BooleanSql Finding Present 
- Indicates whether a restructure SQL recommendation was reported for this SQL statement.
- isSql BooleanProfile Finding Implemented 
- Indicates whether a SQL Profile recommendation has been implemented for this SQL statement.
- isSql BooleanProfile Finding Present 
- Indicates whether a SQL Profile recommendation was reported for this SQL statement.
- isStats BooleanFinding Present 
- Indicates whether a statistics recommendation was reported for this SQL statement.
- isTimeout BooleanFinding Present 
- Indicates whether the task timed out.
- parsingSchema String
- The parsing schema of the object.
- perExecution NumberPercentage 
- The per-execution percentage benefit.
- sqlKey String
- The unique key of this SQL statement.
- sqlText String
- The text of the SQL statement.
- sqlTuning StringAdvisor Task Id 
- The SQL tuning task identifier. This is not the OCID.
- sqlTuning StringAdvisor Task Object Execution Id 
- The execution id of the analyzed SQL object. This is not the OCID.
- sqlTuning StringAdvisor Task Object Id 
- The key of the object to which these recommendations apply. This is not the OCID.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.