Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Restrict Statistics collection - 10g/MMON

Re: Restrict Statistics collection - 10g/MMON

From: A. Coskan Gundogar <gundogar_at_gmail.com>
Date: Thu, 15 Mar 2007 15:53:14 +0200
Message-ID: <d1f742de0703150653uac41118l9ea751e341e2cf68@mail.gmail.com>


for stopping statistic collection

exec DBMS_STATS.LOCK_SCHEMA_STATS(schema_name)

for re enabling it

exec DBMS_STATS.UNLOCK_SCHEMA_STATS(schema_name)

for a particular table and its indexes

exec DBMS_STATS.LOCK_TABLE_STATS ('schema_name','table_name');

exec DBMS_STATS.UNLOCK_TABLE_STATS ('schema_name','table_name');

Be careful when locking schema if you have unlock a table because locking schema overrides unlocking tables

good luck

On 3/15/07, GovindanK <gkatteri_at_fastmail.fm> wrote:
>
> 10g does auto collection of statistics. It does it when the system is
> having less activity. Is there any way i can stop the statistics
> collection from taking place for a particular schema? I can run a job to
> delete statistics. We are going to upgrade to 10g and the optimizer mode
> is going to be the default ALL_ROWS. We are not planning to change it to
> RULE since it is de-supported.
>
> Any ideas?
>
> TIA
>
> Govidan
> --
> http://www.freelists.org/webpage/oracle-l
>
>
>

--
http://www.freelists.org/webpage/oracle-l
Received on Thu Mar 15 2007 - 08:53:14 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US