What happens if you click on tables in a tree - is eul5_documents there ?
Main Topics
Browse All TopicsHi EE,
Recently, I received help on EE (thx pal2ie) on how to get listing of Discoverer reports.
The names of the discoverer reports are stored in EUL5_DOCUMENTS.
Pal2IE gave me sample select sql using EUL4_DOCUMENTS.
I went to Oracle developer (have not had a chance to load the free TOAD version yet)
and executed: select * from EUL5_DOCUMENTS
When i type EUL5_ in Oracle Developer, a little dropdown menu show, and i select EUL5_DOCUMENTS.
so I was surprised, when i executed the sql to get an error msg that the table is not found
below is a screen shot (pls note that i am running this sql out of our ODS area - we run Discoverer against
something like a data warehouse and not against the prod. transactional database)
Any advice would be appreciated, tx, sandra
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi Everyone,
thx for writing... I asked our Oracle admin and he said i had to put the schema name in
front of the table like this:
ODSEUL.EUL5_Documents
so Senz79 agrees by saying:
<Also, if attempting to access a table or view in another schema, make certain the correct schema is referenced and that access to the object is granted. >
How do you find out that EUL5_Documents lives in another schema.
Let's say our admin was not around to tell me?
I did an internet search on what is oracle schema, and found this link:
Would this be the answer to my above question, how to find all schemas and their inner objects?
http://www.databasejournal
Coming back to the original question, the simplest, and most correct, answer is to select distinct owner from DBA_OBJECTS, and optionally exclude the obvious no-brainers such as SYS and SYSTEM. The results of this query provide the definitive answer. Claims that it is rare to find schemas with no tables are wrong. It is not rare at all, but in fact, quite common.
pls advise, tx, sandra
Business Accounts
Answer for Membership
by: Senz79Posted on 2009-10-20 at 20:16:47ID: 25620589
hi
ORA-00942: table or view does not exist
Cause: The table or view entered does not exist, a synonym that is not allowed here was used, or a view was referenced where a table is required. Existing user tables and views can be listed by querying the data dictionary. Certain privileges may be required to access the table. If an application returned this message, the table the application tried to access does not exist in the database, or the application does not have access to it.
Action: Check each of the following:
the spelling of the table or view name. that a view is not specified where a table is required. that an existing table or view name exists.
Contact the database administrator if the table needs to be created or if user or application privileges are required to access the table.
Also, if attempting to access a table or view in another schema, make certain the correct schema is referenced and that access to the object is granted.