I am trying to re-work someone elses code because we have a problem with 2 arrays in the code.
EPArray(Stateindex, Polindex, EffYear, EffMonth, PolYr, PolMth, CompanyIndex, CovgIndex)
This is just to show you how bid this array gets. It loops through about 1 million(this can be as big as 4 mill) transactions collects that information for all of the transactions. So this mother is big. Well it is getting so big that it usually locks up the system because of the lack of memory.
My question is would it be better to put this info into a table for processing vs the array?
What can I do about the memory problem if not?
All advice or comments will be greatly appreciated!
EPArray(Stateindex, Polindex, EffYear, EffMonth, PolYr, PolMth, CompanyIndex, CovgIndex)
This is just to show you how bid this array gets. It loops through about 1 million(this can be as big as 4 mill) transactions collects that information for all of the transactions. So this mother is big. Well it is getting so big that it usually locks up the system because of the lack of memory.
My question is would it be better to put this info into a table for processing vs the array?
What can I do about the memory problem if not?
All advice or comments will be greatly appreciated!