This is when it will happen... Access usually does the " " and hence the
problem...

SVCTOOL>create table "test" (testnum number);

Table created.

SVCTOOL>select table_name from user_tables;

TABLE_NAME
------------------------------
test

SVCTOOL>desc test
ERROR:
ORA-04043: object test does not exist


SVCTOOL>desc "test"
 Name                                                  Null?    Type
 ----------------------------------------------------- -------- ------------
------------------------
 TESTNUM                                                        NUMBER



----- Original Message -----
To: "Multiple recipients of list ORACLE-L" <[EMAIL PROTECTED]>
Sent: Thursday, July 19, 2001 3:32 PM


> One of our programmer had imported a table from ACESS database.
>
> When I query user_tables I get following result.
> SQL> select table_name from user_tables where table_name= 'TMP_APRIL'
>
> no rows selected
>
> SQL> select table_name from user_tables where table_name= 'tmp_april'
>
> TABLE_NAME
> ------------------------------
> tmp_april
>
> When I query tmp_april table I get following result.
> SQL> select count(*) from tmp_april;
> select count(*) from tmp_april
>                      *
> ERROR at line 1:
> ORA-00942: table or view does not exist
>
> SQL> select count(*) from TMP_APRIL;
> select count(*) from tmp_april
>                      *
> ERROR at line 1:
> ORA-00942: table or view does not exist
>
> For some reason, table name has been stored as tmp_april (lower case).
When
> we create table it supposed to store table name with upper case.
>
> Did any one had similar kind of problem?
>
> Thanks in Advance,
>
> Rama Ari
> Database Administrator
> [EMAIL PROTECTED]
> 610.964.5128
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Ari, Rama
>   INET: [EMAIL PROTECTED]
>
> Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California        -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
>
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: orclbabu
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to