All,
Have a strange one for you,
Have an outer stored procedure which uses an inner stored procedure as follows:
SELECT * FROM SplitString (PLACEHOLDER."$$iv_split_string$$"=>:VSTR, PLACEHOLDER."$$iv_split_character$$"=>',');
SplitString is the inner reference, now it was working but then stopped working and I didn't change the code at all.
Does anyone know if specific permissions are required to be able to use a stored procedure in this way?
The inner procedure is using:
LANGUAGE SQLSCRIPT READS SQL DATA WITH RESULT VIEW SplitString
Thanks,
Will