Oracle Default Values - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T04:19:15Z http://stackoverflow.com/feeds/question/286946 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/286946/oracle-default-values 1 Oracle Default Values El Cristoir 2008-11-13T13:48:01Z 2008-11-13T15:20:57Z <p>Hi everyone,</p> <p>I've got a quick question about default values in PL/SQL functions in Oracle. Take this program as an example;</p> <pre><code>create or replace FUNCTION testFunction ( varNumber IN NUMBER DEFAULT 0 ) RETURN NUMBER AS BEGIN dbms_output.put_line(varNumber); RETURN varNumber; END; </code></pre> <p>The idea here being that if no value is specified for varNumber when this function is called, then it will take the value of 0.</p> <p>Now, my problem is that my functions are getting called from a web services layer that will always pass in NULL as the value for parameters which it doesn't have a value for. Oracle interprets NULL as a value, and so does not initialise varNumber to its default of 0.</p> <p>I can see why this approach makes sense, but I was wondering if there was a way to override this behaviour, and make it so that if a NULL value is passed, that it causes Oracle to assign the explicit DEFAULT value that is specified in the function header?</p> <p>I have considered the option of doing a manual check...</p> <pre><code>IF(varNumber IS NULL) THEN varNumber := 0; END IF; </code></pre> <p>However, there are hundreds of functions where this may be an issue, never mind the large number of parameters per function, and so I'd prefer it if I could find a more general solution to the problem.</p> <p>Cheers for any insight you can give.</p> http://stackoverflow.com/questions/286946/oracle-default-values/286963#286963 4 Answer by Turnkey for Oracle Default Values Turnkey 2008-11-13T13:52:47Z 2008-11-13T13:52:47Z <p>Use NVL to define the value. </p> <pre><code>NVL( value_in, replace_with ) </code></pre> http://stackoverflow.com/questions/286946/oracle-default-values/286966#286966 1 Answer by Rob Stevenson-Leggett for Oracle Default Values Rob Stevenson-Leggett 2008-11-13T13:54:22Z 2008-11-13T13:54:22Z <p>Your manual check is the only way to safely do what you want. </p> <p>You can write that in one line like this though:</p> <pre><code>varNumber = NVL(varNumber,0); </code></pre> <p>Good luck!</p> http://stackoverflow.com/questions/286946/oracle-default-values/287082#287082 0 Answer by El Cristoir for Oracle Default Values El Cristoir 2008-11-13T14:32:00Z 2008-11-13T14:32:00Z <p>Hm, looks like that might be the way I have to go. One question though, is there a way to assign values to IN parameters in Oracle? It would make this change significantly easier if I didn't have to create a new local var and then ensure that this is used in all the correct places throughout the function.</p> <p>If I could just assign varNumber := NVL(varNumber,0) at the top of my function, that would be a good bit easier.</p> http://stackoverflow.com/questions/286946/oracle-default-values/287131#287131 1 Answer by Jim Hudson for Oracle Default Values Jim Hudson 2008-11-13T14:50:31Z 2008-11-13T14:50:31Z <p>You can't assign values to an IN parameter, but you could make them IN/OUT and then set them. That raises a big potential for misuse and confusion, though. </p> <p>So I think you'd do better with a local variable. But you can do it in the declaration. That is,</p> <pre><code>create or replace FUNCTION testFunction ( varNumber IN NUMBER DEFAULT 0 ) RETURN NUMBER AS vFix number := nvl(varNumber,0); BEGIN dbms_output.put_line(vFix); RETURN vFix; END; </code></pre> http://stackoverflow.com/questions/286946/oracle-default-values/287218#287218 -1 Answer by El Cristoir for Oracle Default Values El Cristoir 2008-11-13T15:20:57Z 2008-11-13T15:20:57Z <p>Thanks, I think I'll have to go that route then. Cheers everyone for the help.</p>