I need to read a 12Mb text file in, parse it and store it in a database. Problem is, the server is set to only allow 8388608 bytes before it exhausts the allocated memory. Any ideas about how I can overcome this barrier?
Thanks in advance. David
Read the text file in line by line, doing the parsing and database storage as you go.