Hi, I'm on SQLServer 2012 with most recent pack.I have a report running on sp, and I'm getting this results from sp in SSMS order by Name:[code="sql"]Abbielle -- this is correct ASCII collationAdriannitaAimeelAlice AmparomAmy Andrea [/code]And this results on my rdl report: , looks like it cares only about first char and don't do any collation on anything after that:[code="sql"]AmparomAmy Andrea Aimeel Alice Abbielle Adriannita[/code]What is wrong here ? why I dont' get same order ?? I recheck my sp, confirmed that worked against the right one, dont' have any SORT in any groups inside rdl??sp has select c1,.... from t1 order BY NAME.This is really killing me .I just retested ti sorting on numeric column and it works OK, like desighned, but for Alpha looks like a problem.Tx allM
↧