Oh, I doubt very much that you can create that many objects –
that’s just not the right design.
You should consider using a flyweight and/or iterator design
pattern if you need to process all that data. Or better yet, when processing
huge amounts of data I always start first by trying to do the work in stored
procedures. (not that I’m a fan of T-SQL programming, but for processing
huge amounts of data it is the right tool for the job)
Rocky
Rocky