in reply to DBI/load data infile issue

Have you tried parsing the file without loading it all into memory?
open (IN, "/home/reports/ftp/WSB/test.txt"); .... while ( <IN> ) { my $line = $_; .... }
I realize you won't get the total counts before parsing, but you could see if the load into memory had something to do with it.

Don
WHITEPAGES.COM | INC

Edit by castaway: Closed small tag in signature