In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
CREATE INDEX dba_exec_idx_task_name_parameter_name ON dba_advisor_exec_parameters (task_name,parameter_name);
SELECT
dba_advisor_exec_parameters.parameter_name,
dba_advisor_exec_parameters.parameter_value
FROM
dba_advisor_exec_parameters
WHERE
dba_advisor_exec_parameters.task_name = ''
AND dba_advisor_exec_parameters.parameter_name = 'SQLSET_NAME'