Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Analyze in Oracle 8.0.5
Eddie Johnson Jr. wrote:
>
> Just installed Oracle 8.0.5 and it is working fine. I was informed that to
> analyze needs to be applied to assist in the ongoing process of optimizing
> and tuning. Could someone point a novice dba in the correct direction on
> using and installing analyze?
>
> Thanks In Advanced,
> edjohnjr_at_cwix.com
"analyze" just updates the statistics for each index/table etc that are used by the optimiser to determine the best way to get your data...
Check in the "ANALYZE" command (its DDL) in the SQL Reference Manual...but briefly:
analyze table XYZ compute statistics;
analyze table XYZ estimate statistics;
You can also do "analyze index" etc etc
--
![]() |
![]() |