Creating SQL Tuning Task with sql_id
Creating SQL Tuning Task with sql_id ============================= First get sql_id of sql those who try to create task Hope as dba you all know how get sql_id. and here i take below sql-id to create task sql_id= 2w3y1nfj1uanf Note: remember in below red color sql_id change as per your id. Step1: - Create task: SET serveroutput ON DECLARE v_tune_taskid VARCHAR2(100); BEGIN v_tune_taskid := dbms_sqltune.create_tuning_task ( sql_id => ' 2w3y1nfj1uanf ', scope => dbms_sqltune.scope_comprehensive, time_limit => 30, task_name...