in reply to Re: Slow at sorting?
in thread Slow at sorting?
According to an earlier post, the bold fields are the ones you're sorting on. If that's truly the case, and if the text within brackets comes from a limited dictionary, then this sort can be done entirely with numbers.
First, combine the CD number with the file number, yielding (in this case) 101100809 Then map "Account Number" into its pre-determined sequence number. You're then left sorting something like [ 101100809, 47, seek-address ] on the first two fields, which are now numbers.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Slow at sorting?
by guha (Priest) on Nov 22, 2001 at 02:42 UTC | |
by petral (Curate) on Nov 22, 2001 at 03:56 UTC | |
by guha (Priest) on Nov 22, 2001 at 04:08 UTC |