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: TDE issues

Re: TDE issues

From: Ghassan Salem <salem.ghassan_at_gmail.com>
Date: Thu, 24 May 2007 15:52:15 +0200
Message-ID: <411d50f60705240652p2868e8e5r5641d251a8fd0344@mail.gmail.com>


Bill, I did some tests with 2 dbs, and I do not get any wrong results. Are you sure you're on 10.2.0.3 on both dbs? There's this bug 6057069 that looks a bit like your case, but they cannot reproduce on 10.2.0.3 (as I did not reproduce myself).

rgds

On 5/24/07, William Wagman <wjwagman_at_ucdavis.edu> wrote:
>
> Ghassen, yes, I had a typo, here is the corrected problem...
>
> testx=SQL>select * from t1;
> C1
> --
> 1
> 2
>
> 2 rows selected.
>
> testx=SQL>select * from t1 where exists
> 2 (select 'x' from oracle.t2_at_devx a
> 3 where a.c1 = t1.c1);
> C1
> --
> 1
>
> 1 row selected.
>
> testx=SQL>select * from t1 where not exists
> 2 (select 'x' from oracle.t2_at_devx a
> 3 where a.c1 = t1.c1);
> C1
> --
> 2
>
> 1 row selected.
>
> testx=SQL>exit
>
> In devx...
> devx=SQL>select * from t2;
> C1
> --
> 1
> 3
>
> 2 rows selected.
>
> devx=SQL>select * from t2 where exists
> 2 (select 'x' from oracle.t1_at_testx a
> 3 where a.c1 = t2.c1);
> C1
> --
> 1
>
> 1 row selected.
>
> devx=SQL>select * from t2 where not exists
> 2 (select 'x' from oracle.t1_at_testx a
> 3 where a.c1 = t2.c1);
> C1
> --
> 1
> 3
>
> 2 rows selected.
>
> devx=SQL>exit
>
>
>
> Bill Wagman
> Univ. of California at Davis
> IET Campus Data Center
> wjwagman_at_ucdavis.edu
> (530) 754-6208
>
>
> ------------------------------
> *From:* Ghassan Salem [mailto:salem.ghassan_at_gmail.com]
> *Sent:* Wednesday, May 23, 2007 1:31 AM
> *To:* William Wagman
> *Cc:* oracle-l
> *Subject:* Re: TDE issues
>
> Bill,
> are you sure of your test case?
> the second query on testx
> select * from t1 where not exists (select 'x' from oracle.t2_at_devx a where
> a.c1 = t1.c1);
>
> cannot return the result that you mention
> 1
> as there is no such data in t1 in testx (otherwise, this is a 'wrong
> result' case).
>
> rgds
>

--
http://www.freelists.org/webpage/oracle-l
Received on Thu May 24 2007 - 08:52:15 CDT

Original text of this message

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