by GuyC » Mon Nov 26, 2012 4:48 pm
Wrong : SUBSTR(PARM_VALUE,INSTR(PARM_VALUE,'(')+1,INSTR(PARM_VALUE,')')-INSTR((PARM_VALUE,'(')-1))
Correct : SUBSTR(PARM_VALUE,INSTR(PARM_VALUE,'(')+1,INSTR(PARM_VALUE,')')-INSTR(PARM_VALUE,'(') - 1 )
I can explain it to you, but i can not understand it for you.