I'm trying to store data from a file into memo fields. Some of the lines in the data file contain the header information for a given record and the following lines up to the next header line is raw data (genome data in this case so it's just a string of ATCGs.) Anyway, I'm using code like:
to add each line to the memo field. And it works but bloats the .fpt table something awful. Just ten records gave me 700,000k (25 records gave me an out of disk space error). Now a 'pack memo' got me down to 826k which is reasonable, but I'd hate to have to pack after every record. Can I create a variable to hold 200,000 characters? (the individual data lines only appear to be 60 bytes long or so which probably has something to do with why the memos are bloating.) Or is there something else I should be adjusting? Dave Dardinger
Code:
REPLACE genmemo WITH gline ADDITIVE
to add each line to the memo field. And it works but bloats the .fpt table something awful. Just ten records gave me 700,000k (25 records gave me an out of disk space error). Now a 'pack memo' got me down to 826k which is reasonable, but I'd hate to have to pack after every record. Can I create a variable to hold 200,000 characters? (the individual data lines only appear to be 60 bytes long or so which probably has something to do with why the memos are bloating.) Or is there something else I should be adjusting? Dave Dardinger