I am calling a stored procedure in an Oracle database via Nhibernate in my app. The first time I call it everything works fine and I get a result but the second time I get an ORA-00942 (table or view does not exist) exception. Any idea what could be possibly wrong? The procedure just return me an object. No changes are done. Thank you for your ideas.
Asked
Active
Viewed 118 times
0
-
1Some example code might shed some more light on your problems. Just an error message is not a lot to work with. – Rene Feb 06 '14 at 08:24
-
So, you use Dynamic SQLs inside the procedure? Because if table is invalid, and no dynamic sql, then the proc itself could have been in INVALID state. – Maheswaran Ravisankar Feb 06 '14 at 08:25
1 Answers
1
So I have found out the mistake. It was a bad WCF config. It was missing section because some guy deleted it. Thank you for your help.

a.farkas2508
- 357
- 3
- 12