dusanv
Programmer
- May 29, 2002
- 20
Hello,
I have a table that would look like this simplified:
EmpId Data
1 Name|Dusan|Title|Programmer|
every odd token in Data column string is a field name, and every even one is a field value. So, Name=Dusan, Title=Programer.
What I need to do is create a View that would look like this:
EmpId Name Title
1 Dusan Programmer
Is this possible to achieve? I've read about extended procedures where you can interface with C or C++ which could do the parsing part but I'm still not sure if this will help solve my problem. Any suggestions appreciated -- thanks!
I have a table that would look like this simplified:
EmpId Data
1 Name|Dusan|Title|Programmer|
every odd token in Data column string is a field name, and every even one is a field value. So, Name=Dusan, Title=Programer.
What I need to do is create a View that would look like this:
EmpId Name Title
1 Dusan Programmer
Is this possible to achieve? I've read about extended procedures where you can interface with C or C++ which could do the parsing part but I'm still not sure if this will help solve my problem. Any suggestions appreciated -- thanks!