hi all,
sorry for the confusion, the issue was with the query used to view this split ...
I simply changed the query from:
select logtbl.content_TBL_ID, logtbl.content, split.ItemNumber, Item = QUOTENAME(split.Item, '''')
from TBL_RSManagementLog logtbl
CROSS APPLY dbo.DelimitedSplit8K(logtbl.content, '|') split
order by content_TBL_ID
to
select logtbl.content_TBL_ID, logtbl.content, split.ItemNumber, Item = split.Item
from TBL_RSManagementLog logtbl
CROSS APPLY dbo.DelimitedSplit8K(logtbl.content, '|') split
order by content_TBL_ID
and everything is fine now.
Thanks,
elsvieta