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

Home -> Community -> Usenet -> c.d.o.server -> Re: Performance problem: anything else I can do to make this faster?

Re: Performance problem: anything else I can do to make this faster?

From: <bdbafh_at_gmail.com>
Date: 3 Mar 2005 13:50:35 -0800
Message-ID: <1109886635.572153.26420@f14g2000cwb.googlegroups.com>


did you gather statistics on the tables and indexes afterwards?

when you create an index, you can add the "compute statistics" clause on the end.
otherwise, exec
dbms_stats.gather_table_stats(ownname=>user,tabname=>'<table_name>,cascade=>true);

will do the job.

-bdbafh Received on Thu Mar 03 2005 - 15:50:35 CST

Original text of this message

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