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: double-quoting table names in TOAD - restart - sorry!

Re: double-quoting table names in TOAD - restart - sorry!

From: William Robertson <williamr2019_at_googlemail.com>
Date: Sun, 16 Sep 2007 04:56:34 -0700
Message-ID: <1189943794.206701.176680@22g2000hsm.googlegroups.com>


On Sep 15, 6:31 pm, ken quirici <ken.quir..._at_excite.com> wrote:
> Hi,
>
> I seem to have deleted my original post - twice! So
> I'm going to start over - as before, database entity
> names are fictitious.
>
> I was in TOAD logged in to schema1 (Oracle 9i).
> I issued the following select statement from the
> TOAD editor:
>
> select count(*) from schema2.table_a;
>
> I got an 'invalid or missing table' message.
>
> After checking the online docs for Oracle 9i,
> I asked a neighboring dba - he entered and
> ran
>
> select count(*) from schema2."table_a"
>
> and it ran successfully.
>
> Why does the table-name in schema2 need
> to be double-quoted when referenced from
> schema1?
>
> Since the dba's query was successful, clearly
> schema1 had access to table_a in schema2.
> (I had been told this before I ran the query anyway).
>
> Thanks for all your replies up til now, and
> your corrections.
>
> However I don't believe anyone has answered my
> question yet.
>
> Thanks again for your help.
>
> Ken Quirici

The table must have been created using a double-quoted name.

By default, case-insensitivity is achieved by names being automatically converted to uppercase on creation and during query parsing, but you can override that using double-quotes. Received on Sun Sep 16 2007 - 06:56:34 CDT

Original text of this message

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