hi there.
i am converting a large table from visfox to sql2000. this table stores values from a complicated data entry form. in visfox, it has a memo field that stores an array that represents all of the form's required entries and the user's value for these fields. the visfox sample data looks like this:
form org type year state values
52 1 C 2000 CA Memo
52 1 S 2000 CA Memo
52 1 A 2000 CA Memo
the 'Values' field is the array of all the user's entries on this form. if this were converted to a normalized table in sql2000, there would be over 100 million records. can anyone suggest another solution for this? in the past, i have seen programmers store data like this in a delimited text field - if possible, i want to avoid this option.
thank you very much for your help.
i am converting a large table from visfox to sql2000. this table stores values from a complicated data entry form. in visfox, it has a memo field that stores an array that represents all of the form's required entries and the user's value for these fields. the visfox sample data looks like this:
form org type year state values
52 1 C 2000 CA Memo
52 1 S 2000 CA Memo
52 1 A 2000 CA Memo
the 'Values' field is the array of all the user's entries on this form. if this were converted to a normalized table in sql2000, there would be over 100 million records. can anyone suggest another solution for this? in the past, i have seen programmers store data like this in a delimited text field - if possible, i want to avoid this option.
thank you very much for your help.