I have a table tblA
tblA
===================
fldA | fldB | fldC
and a stored procedure spAddData which receives a list as follows 1,abc,100¬1,def,101¬1,ghi,103
Basically the row delimiter is '¬' and field delimiter is ','
How could I best go about inserting a delimited string like this into tblA? No Split UDF function I have seen on the web has been helpful yet. Thanks in advance for replies.
tblA
===================
fldA | fldB | fldC
and a stored procedure spAddData which receives a list as follows 1,abc,100¬1,def,101¬1,ghi,103
Basically the row delimiter is '¬' and field delimiter is ','
How could I best go about inserting a delimited string like this into tblA? No Split UDF function I have seen on the web has been helpful yet. Thanks in advance for replies.