I have a sales database with a customers table, but when I do a "select * from customers", Oracle tells me the table or view does not exist. Huh?
If I go into SQL*PLUS and connect to sales ("Successful"), then do a SELECT * FROM CAT, I see the tables in the sales database (schema), including the customers table.
The only thing that seems to work is:
select * from "customers" (as an example of one of the tables).
----
What's confusing here is that with other Oracle schemas, the quotes are not required.
This makes
JDBC programming much more difficult.
Any ideas how I can get Oracle to let me create queries without the quotes?
Thanks in advance.
-- M