We have an SSRS report on which we want to show a date field in the following format DD-MMM-YY like in Oracle. That converts dates to 25-Jan-11
So in the SQL that does the final select, we use Replace (CONVERT (VarChar, DateTimeColumn,106), ' ', '-')
Is there a better way of doing this conversion?