I have the following sql code which works fine but does not sort Party.Name
which is non ASCII string:
Select Party.Name
FROM B_Customer
Inner Join dbo.AccDomain On AccDomain.AccID = B_Customer.AccID
Inner Join Party On PartyID = AccDomain.DomainID
ORDER BY Party.Name COLLATE Frisian_100_CI_AI
Also please note that the following code sorts appropriately:
select name from Party where TypeID=10 order by name COLLATE Frisian_100_CI_AI
What should I do to for my sorting problem?