IN DB2 V5R4, When you modify the functionality of a DETERMINISTIC UDF It returns the cached response for a while...

There are any way to reset the cached responses?

Thanks in advance.

link|improve this question
Reset it how? If it needs to be reset, that would imply that the results aren't deterministic on the values passed in - which is what I would assume ALL RDBMSs would base their optimization off of. You may need to make the UDF non-deterministic, or see about splitting up the function into determinisitic and non-deterministic parts. Can you give us the larger context? We may be able to help. – X-Zero Feb 10 at 21:53
Modifiying the funcionality of a Deterministic UDF it returns for a while the answer of the previous behavior. (V5R4 Did't implement ALTER FUNCTION statement, you MUST first DROP and then CREATE again the function...) – Pedro Vaquero Feb 13 at 9:12
Ah, I didn't quite get that it'd been modified - I thought you were wanting to reset it during a statement run... I don't know about any specific command - I would have thought that the DROP and CREATE cleared any cache. IPLing the system would (almost certainly) do it, but be a bit heavy-handed; perhaps check with your IBM rep? – X-Zero Feb 14 at 21:31
I will.... Thanks X-Zero – Pedro Vaquero Feb 15 at 13:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.