Reputation: 1589
I have an issue where all dates in parameters are displayed as mm/dd/yyyy:
My goal is to change the date format to dd/mm/yyyy, which would require changing the locale to English-GB. Things which I've currently tried (and didn't work):
EXEC sp_configure 'default language', 23 ;
ALTER LOGIN [XXXXX] WITH DEFAULT_LANGUAGE = British
Non of the above worked and I'm still seeing the dates in the wrong format. Is there anything else I can do?
Upvotes: 1
Views: 3517
Reputation: 2042
I think actually this comes from the Language of the browser rather than Report Server - I could be wrong. Try changing from US English to GB English in IE or whatever you're using.
Upvotes: 1