Using SQL Server 2008, I am trying to do something similar to this post regarding splitting a concatenated field into separate parts for normalization purposes.
The problem with the solutions in the linked post is that they only work for delimited values.
The data I am attempting to split would be similar to:
UserID -- ConcatField
1 -- ABC
2 -- DEF
I would want the output to be like:
UserID -- ConcatField
1 -- A
1 -- B
1 -- C
2 -- D
2 -- E
2 -- F
Is there a function to split out these values without the use of a delimiter?