SQL Controls & SQL Profiles
SQL Controls & SQL Profiles
=============
This part explains how to manage SQL profiles and SQL plan baselines, and migrate
stored outlines to SQL plan baselines.
contains the following chapters:
SQL profiles are created when a DBA invokes SQL Tuning Advisor.
When profiling a SQL statement, SQL Tuning Advisor uses a specific set of bind
values as input.
The advisor compares the optimizer estimate with values obtained by executing
fragments of the statement on a data sample. When significant variances are found,
SQL Tuning Advisor bundles corrective actions together in a SQL profile, and then
recommends its acceptance.
-------------------------------------------------------------------------------
FINDINGS SECTION (2 findings)
-------------------------------------------------------------------------------
Executing this query parallel with DOP 7 will improve its response time
82.22% over the SQL profile plan. However, there is some cost in enabling
parallel execution. It will increase the statement's resource consumption by
an estimated 24.43% which may result in a reduction of system throughput.
Also, because these resources are consumed over a much smaller duration, the
response time of concurrent statements might be negatively impacted if
sufficient hardware capacity is not available.
The following data shows some sampled statistics for this SQL from the past
week and projected weekly values when parallel execution is enabled.
On the command line, you can manage SQL profiles with the DBMS_SQLTUNE package. To
use the APIs, you must have the ADMINISTER SQL MANAGEMENT OBJECT privilege.
If the database recommends both an index and a SQL profile, then either use both or
use the SQL profile only. If you create an index, then the optimizer may need the
profile to pick the new index.
Assumptions:-
Connect SQL*Plus to the database with the appropriate privileges, and then execute
the ACCEPT_SQL_PROFILE function.
DECLARE
my_sqlprofile_name VARCHAR2(30);
BEGIN
my_sqlprofile_name := DBMS_SQLTUNE.ACCEPT_SQL_PROFILE (
task_name => 'STA_SPECIFIC_EMP_TASK'
, name => 'my_sql_profile'
, profile_type => DBMS_SQLTUNE.PX_PROFILE
, force_match => true
);
END;
/
Connect SQL*Plus to the database with the appropriate privileges, and then query
the DBA_SQL_PROFILES view.
The example in this section assumes that you want to change the category of the SQL
profile so it is used only by sessions with the SQL profile category set to TEST,
run the SQL statement, and then change the profile category back to DEFAULT.
1. Connect SQL*Plus to the database with the appropriate privileges, and then use
the ALTER_SQL_PROFILE procedure to set the attribute_name.
For example, execute the following code to set the attribute CATEGORY to TEST:
VARIABLE pname my_sql_profile
BEGIN DBMS_SQLTUNE.ALTER_SQL_PROFILE (
name => :pname
, attribute_name => 'CATEGORY'
, value => 'TEST'
);
END;
For example, execute the following code to set the attribute CATEGORY to DEFAULT:
Assumptions:-
This section assumes the following:
Connect SQL*Plus to the database with the appropriate privileges, call the
DBMS_SQLTUNE.DROP_SQL_PROFILE procedure.
BEGIN
DBMS_SQLTUNE.DROP_SQL_PROFILE (
name => 'my_sql_profile'
);
END;
/
Examples:
=========
DECLARE
tune_sql CLOB;
tune_task VARCHAR2(30);
BEGIN
tune_sql := 'select count(*) from scott.emp';
tune_task := DBMS_SQLTUNE.CREATE_TUNING_TASK(
sql_text => tune_sql
,user_name => 'SCOTT'
,scope => 'COMPREHENSIVE'
,time_limit => 60
,task_name => 'TUNE1'
,description => 'Calling SQL Tuning Advisor for one statement'
);
END;
/
This step runs the SQL Tuning Advisor to generate advice regarding any queries
associated with the tuning task
(created in step 1):
SQL> exec dbms_sqltune.execute_tuning_task(task_name=>'TUNE1');
For this example, the SQL Tuning Advisor recommends creating a SQL profile. Here is
a snippet from the output
that contains the recommendation and the code required to create the SQL profile:
Recommendation (estimated benefit: 86.11%)
------------------------------------------
- Consider accepting the recommended SQL profile to use parallel execution for this
statement.
execute dbms_sqltune.accept_sql_profile(task_name => 'TUNE1', task_owner => 'SYS',
replace => TRUE, profile_type => DBMS_SQLTUNE.PX_PROFILE);
-------------------------------------------
Executing this query parallel with DOP 8 will improve its response time
86.11% over the original plan. However, there is some cost in enabling
parallel execution...
begin
-- This is the code from the SQL Tuning Advisor
dbms_sqltune.accept_sql_profile(
task_name => 'TUNE1',
task_owner => 'SYS',
replace => TRUE,
profile_type => DBMS_SQLTUNE.PX_PROFILE);
--
end;
/
When the prior code is run, it creates and enables the SQL profile. Now whenever
the associated SQL query is
executed, the SQL profile will be considered by the optimizer when formulating an
execution plan.
If you need to later drop the tuning task, you can use the
DBMS_SQLTUNE.DROP_TUNING_TASK procedure. Here’s an
example of dropping the tuning task:
You’ve created a SQL profile for a query and wonder if the SQL profile is being
used by the optimizer when the
query executes.
Query the SQL_PROFILE column of V$SQL to display any SQL queries currently in
memory that have used a SQL profile.
For example:
To view historical high resource-consuming SQL statements that have used a SQL
profile, then query the
DBA_HIST_SQLSTAT view:
You realize that the Automatic SQL Tuning job runs on a daily basis (in Oracle
Database 11g or higher). You determine
that the automatic tuning job generates reasonable SQL profiles for problematic
queries and now want to enable the
automatic acceptance of SQL profiles generated by the automatic tuning job.
You can report on the details of the automatic tuning task configuration via this
query
SELECT
parameter_name
,parameter_value
FROM dba_advisor_parameters
WHERE task_name = 'SYS_AUTO_SQL_TUNING_TASK'
AND parameter_name
IN ('ACCEPT_SQL_PROFILES',
'MAX_SQL_PROFILES_PER_EXEC',
'MAX_AUTO_SQL_PROFILES',
'EXECUTION_DAYS_TO_EXPIRE');
BEGIN
DBMS_SQLTUNE.ALTER_SQL_PROFILE(
name => 'SYS_SQLPROF_013f199ac5990000',
attribute_name => 'STATUS',
value => 'DISABLED');
END;
/
BEGIN
DBMS_SQLTUNE.ALTER_SQL_PROFILE(
name => 'SYS_SQLPROF_013f199ac5990000',
attribute_name => 'STATUS',
value => 'ENABLED');
END;
/
=======================THE
END================================================================================
====================