My Oracle 9i package won't compile, says that a user-defined function is out of scope... but it isn'

Posted by bitstream on Stack Overflow See other posts from Stack Overflow or by bitstream
Published on 2010-04-19T18:07:22Z Indexed on 2010/04/19 18:13 UTC
Read the original article Hit count: 216

I have an Oracle package which contains user-defined functions and procedures, including two user-defined functions which are called from SELECT and UPDATE statements.

The functions in question are defined before the procedures that call them.

This piece of code compiles and works fine on Oracle 10g but won't compile on 9i. The code should work as-is according to Oracle's own documentation.

Any idea why it would throw this error on 9i?

© Stack Overflow or respective owner

Related posts about oracle9i

Related posts about function