Oracle Default Values - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T01:09:16Zhttp://stackoverflow.com/feeds/question/286946http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/286946/oracle-default-values1Oracle Default ValuesEl Cristoir2008-11-13T13:48:01Z2008-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#2869634Answer by Turnkey for Oracle Default ValuesTurnkey2008-11-13T13:52:47Z2008-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#2869661Answer by Rob Stevenson-Leggett for Oracle Default ValuesRob Stevenson-Leggett2008-11-13T13:54:22Z2008-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#2870820Answer by El Cristoir for Oracle Default ValuesEl Cristoir2008-11-13T14:32:00Z2008-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#2871311Answer by Jim Hudson for Oracle Default ValuesJim Hudson2008-11-13T14:50:31Z2008-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-1Answer by El Cristoir for Oracle Default ValuesEl Cristoir2008-11-13T15:20:57Z2008-11-13T15:20:57Z<p>Thanks, I think I'll have to go that route then. Cheers everyone for the help.</p>