in reply to Re: Re: Re: Heap sorting in perl
in thread Heap sorting in perl

If that particular column is not indexed, I suggest index it, as you need it.

If this is a write-mostly, query-infrequently table, indexing could significantly degrade performance. For log/audit files that record large numbers of miscellaneous value, indexing the values is rarely an effective strategy.

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Heap sorting in perl
by pg (Canon) on Apr 06, 2003 at 04:31 UTC
    When this is generally correct, I don't really see a reason why a person want to "sort by" some column containing some miscellaneous values. If unfortunately that's the case, then should look into the data, and have some sort of key information extracted.

    Any way, I believe blakem has his stuff well organized, and what he is doing is reasonable.