Stored Procedure return datetime in utc like:
In SSRS report I formated date with mask "dd.MM.yyyy hh:mm:ss". But time was change
I think this happens becouse ssrs convert date from dd/MM/yyyy hh:mm:ss PM(AM) format. How can I return time from sp normaly?
Use HH
for 24 hour format. hh
is 12 hour format. So, your new format would be:
dd.MM.yyyy HH:mm:ss