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: Queries give impossible results

Re: Queries give impossible results

From: Jake S <nospam_at_nospam.net>
Date: Fri, 15 Nov 2002 09:11:44 GMT
Message-ID: <kT2B9.106$Ph.4055@read2.inet.fi>


> Hi Jake,
>
> Sorry you're having so much grief :(
>
> Just a quick note to say that FORCE is not a valid hint (and is hence
> ignored), FULL is the one you're after.
>
> Cheers
>
> Richard

I'm getting used to the weird problems :) I didn't have time to check syntax, so this is the correct one?

SQL> SELECT /*+ FULL */ count(*) FROM ci_customer WHERE customer_state = 'ACTIVE' AND customer_type <> 'PERSON';

  COUNT(*)


         4

SQL> SELECT /*+ FULL */ count(*) FROM ci_customer WHERE customer_type <> 'PERSON' AND customer_state = 'ACTIVE';

  COUNT(*)


         4

Received on Fri Nov 15 2002 - 03:11:44 CST

Original text of this message

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