0
This is only the default display format within the database, the date information itself is correct and has nothing to change. If you want to return the formatted date as mentioned, you will need to do something like this
SELECT CONVERT(VARCHAR(19),GETDATE(),105)
The last parameter is that it determines how the formatting will come, for more details of which numbers are possible: http://www.w3schools.com/sql/func_convert.asp