[20171206]SQLTUNE_CATEGORY参数.txt
--//今天提示别人使用sql profile优化语句,使用DBMS_SQLTUNE.import_sql_profile的引入替换功能.一般我的测试
--//category参数是'',也就是NULL.如果指定如何优化确定优化有效呢?
--//链接:http://www.itpub.net/thread-2094823-1-1.html
--//实际上就是修改参数SQLTUNE_CATEGORY.
--//https://docs.oracle.com/cd/E11882_01/server.112/e40402/initparams250.htm#REFRN10257
SCOTT@book> @ &r/ver1
PORT_STRING VERSION BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx 11.2.0.4.0 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
SCOTT@book> show parameter SQLTUNE_CATEGORY
NAME TYPE VALUE
---------------- ------- --------
sqltune_category string DEFAULT
--//自己很少指定这个参数,做一个记录.
SCOTT@book> alter session set sqltune_category=test;
Session altered.
SCOTT@book> show parameter SQLTUNE_CATEGORY
NAME TYPE VALUE
---------------- ------ ------
sqltune_category string TEST
SCOTT@book> alter session set sqltune_category='test';
Session altered.
SCOTT@book> show parameter SQLTUNE_CATEGORY
NAME TYPE VALUE
---------------- ------ ------
sqltune_category string test
--//注意引号引起的大小写问题.