S
Sash
Have a database from a client that contains a field with 8 characters that
identify a matching document. However, if there are two documents associated
with a client, the field become 16, 3 would be 24 characters, etc.
I need to break this down into separate fields. For example:
00000000100000000200000003 is currently stored as one field. I want to
store 00000001, 000000002, 000000003 in a separate table joining to client
data on a common key. I've parsed fields on comma or space, but am not sure
how to approach this on.
Any suggestions or a starting point would be greatly appreciated!
identify a matching document. However, if there are two documents associated
with a client, the field become 16, 3 would be 24 characters, etc.
I need to break this down into separate fields. For example:
00000000100000000200000003 is currently stored as one field. I want to
store 00000001, 000000002, 000000003 in a separate table joining to client
data on a common key. I've parsed fields on comma or space, but am not sure
how to approach this on.
Any suggestions or a starting point would be greatly appreciated!