tomblanchard
Programmer
I am executing a function that returns a dynamically built query, however the results get wrapped with a breaking space. Is there some way that I can stop this?
For instance if my result is supposed to come back as:
SELECT dummy from dual;
It returns:
SELECT dum
my from dual;
With a breaking space between the two m's in dummy, causing my function that executes this to throw the error missing expression when executed in Sql*Plus.
Does anyone know of a workaround for this?
For instance if my result is supposed to come back as:
SELECT dummy from dual;
It returns:
SELECT dum
my from dual;
With a breaking space between the two m's in dummy, causing my function that executes this to throw the error missing expression when executed in Sql*Plus.
Does anyone know of a workaround for this?