Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-00942 Table does not Exist

929728Mar 6 2017 — edited Mar 7 2017

I created a table under my Oracle user from Alteryx, a third-party application.  In SQL Developer I can see the table under my user's schema and I can see all the data and properties.  However I cannot query it even when specifying the user (error: ORA-00942: table or view does not exist).

The following query correctly returned my user name:

select owner,

       object_name

from dba_objects

where object_name = any ('test_spread');

This post has been answered by Hemant K Chitale on Mar 7 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 4 2017
Added on Mar 6 2017
26 comments
9,924 views