| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Win2000/8.1.7.3.0/SQL
Dan:
 
I don't think this is the problem. See query...
SQL> select degree, count(*) 
  2  from dba_tables
  3  group by degree;
 
DEGREE       COUNT(*)
---------- ----------
1 2652
And I have not changed anything.
Thanks (and keep those ideas coming in, folks!), Mike
-----Original Message-----
Sent: Tuesday, August 20, 2002 11:03 AM
To: Multiple recipients of list ORACLE-L
Hi Mike,
I got 'DEFAULT'. After 'alter table ... noparallel', it was '1'.
>From Metalink 66484.1: 
(3) If any table in a query has a parallel degreee greater than one
     (including the DEFAULT degree), Oracle uses the cost-based optimizer 
     for that query--even if OPTIMIZER_MODE = RULE, or if there is a RULE 
     hint in the query itself 
So, since you said that a RULE hint makes it work, this may not be the problem.
Dan.
-----Original Message----- 
Sent: Tuesday, August 20, 2002 10:05 AM 
To: Multiple recipients of list ORACLE-L 
Dan:
When you did a 'select degree from dba_tables', did you get '1' or 'DEFAULT'? I get '1's for all my tables. Is there someplace else I should look?
Thanks, 
Mike 
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Vergara, Michael (TEM) INET: mvergara_at_guidant.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Aug 20 2002 - 14:23:26 CDT
|  |  |