Disabling SQL Tuning Advisor [message #602526] |
Thu, 05 December 2013 04:49  |
muktha_22
Messages: 527 Registered: December 2009
|
Senior Member |
|
|
Hi,
Is there any way to disable the SQL Tuning Advisor in 10g like we have in 11g as below.
BEGIN
DBMS_AUTO_TASK_ADMIN.DISABLE(
client_name => 'sql tuning advisor',
operation => NULL,
window_name => NULL);
END;
Regards
Muktha
|
|
|
|
|
Re: Disabling SQL Tuning Advisor [message #602537 is a reply to message #602535] |
Thu, 05 December 2013 07:23   |
martijn
Messages: 286 Registered: December 2006 Location: Netherlands
|
Senior Member |
|
|
pablolee wrote on Thu, 05 December 2013 14:13martijn wrote on Thu, 05 December 2013 12:36but I'm quite sure that this will work in 11.2
Although, of course, the OP is asking about the option in 10g...
Ow...how stupid (of me).
Reading seems to be very difficult at times.
Sorry for the noise
|
|
|
Re: Disabling SQL Tuning Advisor [message #602538 is a reply to message #602526] |
Thu, 05 December 2013 07:27   |
John Watson
Messages: 8966 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
muktha_22 wrote on Thu, 05 December 2013 10:49Hi,
Is there any way to disable the SQL Tuning Advisor in 10g like we have in 11g as below.
BEGIN
DBMS_AUTO_TASK_ADMIN.DISABLE(
client_name => 'sql tuning advisor',
operation => NULL,
window_name => NULL);
END;
Regards
Muktha This does not disable the SQL Tuning Advisor, all it does is disable the autotask that runs the advisor in every maintenance window. To disable it in 11.x you have the control_management_pack_access parameter. No way I know of in 10.x
|
|
|
Re: Disabling SQL Tuning Advisor [message #602539 is a reply to message #602537] |
Thu, 05 December 2013 07:31   |
pablolee
Messages: 2882 Registered: May 2007 Location: Scotland
|
Senior Member |
|
|
martijn wrote on Thu, 05 December 2013 13:23
Reading seems to be very difficult at times.
Sorry for the noise
LOL, I know exactly what you mean. No apologies necessary.
|
|
|
|