Neal Clark <nclark@xxxxxxxxxxxxxxxxx> writes: > comments? Looks like the right idea. If you have a lot of rows to process, you'll benefit by fetching in batches, e.g. my $sth = $dbh->prepare(qq{FETCH FORWARD 1000 FROM my_cur}); # iterate through the result set here.... -Doug