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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Synonym question (possibly hidden tables)

Re: Synonym question (possibly hidden tables)

From: Guy Quesnel <gquesnel_at_magma.ca>
Date: Thu, 11 Feb 1999 03:50:30 GMT
Message-ID: <36C25431.21843C3C@magma.ca>


Hi,
If you would like to know if it is a synonym, you could try "select table_name
 from dba_synonyms
 where table_name like 'ABC%';"
Could it be a view, instead.
You could also try something like
"Select owner,object_name,object_type
 from dba_objects
 where object_name like 'ABC%';"

I hope this helps.
Guy.

sks_at_scminc.com wrote:

> Greetings,
>
> I've been looking at the the table structure of some data
> and have found that I can access some tables that don't show
> up in "all tables" ie via a "select table_name from all_tables".
>
> Are these "mystery tables" actually synonyms? If so, how
> do I go about finding out what synonyms are out there?
>
> Ps. I've running the queries as the system user, so I should have
> access to everything.
>
> Thanks,
> Sujay S.
>
> -----------== Posted via Deja News, The Discussion Network ==----------
> http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
Received on Wed Feb 10 1999 - 21:50:30 CST

Original text of this message

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