Retic
Active Member
Interesting issue you have there...
I think I would go with either.
1. Dynamically reacreate table and insert required columns..
2. Use a retrieve and store function to split and combine the date into one field per customer. (Deliminated method)
As I see it both have pros and cons.
1. This will be a easier to to retrieve and display.. searches indexing exct however re createing thr table will require a rather large script allong with the added issues of Posibly confusing datasets and so on.
2. This will most definitely be the quickest.. get the entire field per record and split for viewing. But that would mean indexing and filtering delays.. only however if your using the db itself.. if you allready have the pk value of the record.. it wont be an issue...
Just my thoughts..
I might even be barking up the wrong tree.
I think I would go with either.
1. Dynamically reacreate table and insert required columns..
2. Use a retrieve and store function to split and combine the date into one field per customer. (Deliminated method)
As I see it both have pros and cons.
1. This will be a easier to to retrieve and display.. searches indexing exct however re createing thr table will require a rather large script allong with the added issues of Posibly confusing datasets and so on.
2. This will most definitely be the quickest.. get the entire field per record and split for viewing. But that would mean indexing and filtering delays.. only however if your using the db itself.. if you allready have the pk value of the record.. it wont be an issue...
Just my thoughts..
I might even be barking up the wrong tree.