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: SQL performs better ! , but why?

Re: SQL performs better ! , but why?

From: Sunil <sunil_franklin_at_hotmail.com>
Date: Wed, 24 Apr 2002 14:07:17 +0530
Message-ID: <%bux8.3$Cv2.61@news.oracle.com>


found the foll doc.
http://asktom.oracle.com/pls/ask/f?p=4950:8:723931

    reads like a classic.

Sunil.

"Sunil" <sunil_franklin_at_hotmail.com> wrote in message news:Besx8.20$w43.140_at_news.oracle.com...
> All,
>
> I had the following query which was taking ages to run :-
> <
> select s.owner || '.' || s.synonym_name,
> from dba_objects o, dba_synonyms s
> where s.owner in ('SYSTEM', 'PUBLIC')
> and o.object_type in ('TABLE', 'VIEW')
> and s.table_owner = o.owner
> and s.table_name = o.object_name
> >
>
> I changed it to the following and it was performing much better.
> <
> select s.owner || '.' || s.synonym_name
> from dba_synonyms s
> where exists ( select 'x' from dba_objects o
> where s.table_name = o.object_name
> and s.table_owner = o.owner
> and o.object_type in ('TABLE', 'VIEW')
> )
> and s.owner in ('SYSTEM', 'PUBLIC')
> >
>
> Is this way of rewriting the query ok? and can some expert out there
> explain why the second query is performing much faster. ( I am running on
> Oracle 9i ).
>
>
>
> Thanks,
> Sunil.
>
>
>
Received on Wed Apr 24 2002 - 03:37:17 CDT

Original text of this message

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