in reply to Re: Re: Re: Out of memory using Spreadsheet::ParseExcel
in thread Out of memory using Spreadsheet::ParseExcel

Thanks for your suggestion .. I editted the module and re-ran the script but got the same out of memory error. I tried commenting out everything except the value, and still got an out of memory error. Frustrating.

Since it's interpreted, I assume I don't have to re-install the module (run make again). Is that correct?

--t. alex

"There was supposed to be an earth-shattering kaboom!" --Marvin the Martian

  • Comment on Re(4): Out of memory using Spreadsheet::ParseExcel

Replies are listed 'Best First'.
Re: Re(4): Out of memory using Spreadsheet::ParseExcel
by dragonchild (Archbishop) on Feb 26, 2002 at 16:26 UTC
    That is correct. Now, there are further changes that can be made to Spreadsheet::ParseExcel. One is to remove a lot of font information. Another is to rewrite the objects using file-scoped parallel arrays and not hashes.

    One thing that really helped my understanding of the module was to use Data::Dumper with a relatively small Excel file and see how the workbook was constructed.

    Another memory-saving tip is to reduce the number of worksheets you're using at one time. By consolidating some sheets (easily done using VBA within the workbook), you can drop the memory requirements of Spreadsheet::ParseExcel by over 50%, in some cases.

    Another option is to split up the data into a number of workbooks and work with one at a time.

    ------
    We are the carpenters and bricklayers of the Information Age.

    Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.