Subject | Re: sort table depending on the select list instead of depending on the order-by |
---|---|
Author | woodsmailbox |
Post date | 2009-03-03T18:04:48Z |
> First issue is the one explained by Ann: the engine always preferstwo
> sequential (i.e. storage order) scans for a sort instead of a mixedturned
> sequential / random approach. This is by design and it cannot be
> off. The problem you experience is caused by the fact that the sortvia a
> records are stored expanded, while they're compressed on data pages.
> This is why you see the big I/O difference. This could be improved
> proper tuning of the SortMemUpperLimit / TempCacheLimit parameters,gotcha. was chewing on Ann's hint about compression while you were
> provided that you have plenty of RAM on board. This is a design
> limitation and not a bug.
writing:)