SharePoint 2010 Search Wrong Sort Order by Title
We newly realized that the SharePoint Search has a strage effect when you sort the results by title. We have a custom java application, which uses the SharePoint search web service to query and display search result from a non SharePoint Site.
When we order the search by title with the expression "Order by" either in keyword or sql syntax we have results like that:
The first 50 results are ordered, than the next 50 and so on. After digging a while and contacting the MS support we found out that this is a SharePoint bug with multiple indexes.
If you have multiple indexes in your search application you'll get this result.
When we order the search by title with the expression "Order by" either in keyword or sql syntax we have results like that:
- a
- aa
- aaa
- b
- ba
- bc
- bd
- tt
- z
- ac ' Search starts new order
- ad
- cd
- fg
The first 50 results are ordered, than the next 50 and so on. After digging a while and contacting the MS support we found out that this is a SharePoint bug with multiple indexes.
If you have multiple indexes in your search application you'll get this result.
Comments