Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Concept clarification - Invalid packages
Sorry this is a bit of a long one....
I am currently arguing with a developer over an application's behaviour with regards handling of invalid packages.
Application X is making SQL calls and using package calls in-line to retrieve data, now while this is going on you can change the package being used, by reloading the complete package definition, this obviously causes the SQL to throw an ORA4061, state of packages had changed. This is in turn tells the app that something has gone wrong, however the app simply hands back only the data it has collected so far. I believe the app should say "oh well ORA SQL error, sorry no data. please try again later".
Now extracting the small section of SQL:
SELECT VIEW_001.COL1 FROM VIEW_NUMBER_001 WHEREpackage, it cuts right into the SQL and stops it with the ORA-4061, "state of package has changed", as I would expect it to.
( PACKAGE_001.FUNCTION_001(VIEW_001.COL1))
If this runs in a session, and in another session we reload the
Now if I run this in one session, NOTE: wrapping a count function around the data column this time:
SELECT count(VIEW_001.COL1) FROM VIEW_NUMBER_001 WHEREfinished, before it gets a crack the reload/rebuild.
( PACKAGE_001.FUNCTION_001(VIEW_001.COL1))
The package reload in the other session waits until the SQL has
My understanding, possibly flawed, is that the 2nd SQL, the count() is forcing the package to stay locked down until the result is completely collated, finally counted and returned, before allow the package to be manipulated.
The first SQL is constantly calling and releasing the package, so at some point Oracle is allowing the rebuild package to jump in, the split second it knows the package is no longer locked in use.
Is my thinking correct or have I missed something stupidly fundamental?
Thanks for you patience if you got this far!
-- http://www.freelists.org/webpage/oracle-lReceived on Fri Jan 28 2005 - 03:58:36 CST
![]() |
![]() |