first convert the field to varchar and use the left function to make sure you'll only capture 10 characters
Something like this
Then add the convert to datetime function
convert(datetime,left(convert(varchar,yourdatetfield),10),103)
Maybe that will work