in reply to Re^2: Unique numeric ID for reference?
in thread Unique numeric ID for reference?

Then i wonder why you are sorting by reference address. Is that ever useful? It's kind of randomish.

Replies are listed 'Best First'.
Re^4: Unique numeric ID for reference?
by Jeffrey Kegler (Hermit) on Oct 07, 2007 at 15:35 UTC
    Sorting with numeric references as a key will gather records with the same reference together. This might be done, for example, to weed out duplicates. Other than that, yes, you're right, the ordering between non-identical references is pseudo-random and not very useful.

    jeffrey