Skip to Main Content

SQL Developer

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!

Error(27,3): PL/SQL: SQL Statement ignored and Error(33,43): PL/SQL: ORA-00942: table or view does n

7bd29103-20c3-4c55-b556-e037c9a730edAug 31 2016 — edited Aug 31 2016

Hello Guys I am facing this weird error

procedure get_events(evts out resultset) as

begin

  -- get all event records meet the schedule and data condition

  open evts for

 

  select  /set fo coolumns*/

  from  abc_def.hello_tbnle ss

   where /*conditions*/

  order by /*conditions*/

 

end get_events;

I am getting the errors at the above blue lines saying:

Error: PL/SQL: SQL Statement ignored

Error: PL/SQL: ORA-00942: table or view does not exist

But the query is working if I run it out of the procedure.

And the table exits and I have grant select on that table.

Thanks

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 28 2016
Added on Aug 31 2016
2 comments
2,193 views