I want to use NVL2
function in string processing, e.g.
some_variable := nvl2 (other_variable, '.' || other_variable, '');
For this I receive error
PLS-00201: identifier 'NVL2' must be declared
Suprisingly, works:
some_variable := nvl (other_variable, '');
Is there any help except using if-then-end?
Thanks Jan