I have a single field in MS Sql Server 2005 that has the following format:
NOTES
-----
{VALUE1} AAA {VALUE2} BBB {VALUE3} CCC
What I'm trying to do is parse this field out to throw each value into another table. So it would parse it out like so:
VALUE1 VALUE2 VALUE3
------ ------ ------
AAA BBB CCC
Any text after {VALUE1} would belong to VALUE1, and so on. Any help would be greatly appreciated!
NOTES
-----
{VALUE1} AAA {VALUE2} BBB {VALUE3} CCC
What I'm trying to do is parse this field out to throw each value into another table. So it would parse it out like so:
VALUE1 VALUE2 VALUE3
------ ------ ------
AAA BBB CCC
Any text after {VALUE1} would belong to VALUE1, and so on. Any help would be greatly appreciated!