Fetched: September 30th, 2008, 7:24am PDT
Hi Tom,
To count the Number of Delimiters in a Given string i use the below query.
SELECT COUNT(DECODE(LEVEL,0,NULL,LEVEL)) COUNT_DELIMIT
FROM DUAL
CONNECT BY INSTR('1,2,3,4,5,6,,',',',1,LEVEL) >0
but i used the same query in the...