[20171206]SQLTUNE_CATEGORY引數.txt

lfree發表於2017-12-07

[20171206]SQLTUNE_CATEGORY引數.txt

--//今天提示別人使用sql profile最佳化語句,使用DBMS_SQLTUNE.import_sql_profile的引入替換功能.一般我的測試
--//category引數是'',也就是NULL.如果指定如何最佳化確定最佳化有效呢?

--//連結:http://www.itpub.net/thread-2094823-1-1.html

--//實際上就是修改引數SQLTUNE_CATEGORY.
--//
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

--//注意引號引起的大小寫問題.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2148393/,如需轉載,請註明出處,否則將追究法律責任。

相關文章