Hi Chandan
I have similar requirement, I tried logic suggested by you but unfortunately it's not working for me, as you can see in below example
--CALL testproc;
CREATE PROCEDURE testproc () LANGUAGE SQLSCRIPT SQL SECURITY INVOKER AS
BEGIN
DECLARE var1 NVARCHAR(2);
SELECT BINTOSTR( HEXTOBIN('0D0A') ) --Carriage return line feed
INTO var1
FROM DUMMY;
Select 'xdfs'|| :var1 ||'zfdsfd' From DUMMY;
END;
Could you please help me in this ?
Thanks
Yogesh Kumar