|
|
|
Clear questions and runnable code get the best and fastest answer |
|
| PerlMonks |
Re^3: Processing ~1 Trillion recordsby Mr. Muskrat (Abbot) |
| on Oct 25, 2012 at 17:39 UTC ( #1000907=note: print w/ replies, xml ) | Need Help?? |
|
You want to read up on bind_columns because it "is the most efficient way to fetch data" (according to the DBI docs).
If the real query selects columns that are restricted to one value in the where clause then you can speed it up tremendously by not returning the static data. In the example query, you only care about column_c so you could remove everything else from the select (including the join). If this isn't the case, you might want to come up with a better example.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||