Maybe some of database tools allow various displayed formats of the date columns, but this feature does not seem available in Management Studio.
You can specify the format of the dates in your statements using CONVERT and FORMAT. For example:
select convert(varchar(max), DateColumn, 13),
format(DateColumn, 'dd-MMM-yyyy')
from MyTable
But you cannot change the internal representation of the data.