I tried this
SELECT convert(datetime, \'23/07/2009\', 111)
but got this error
The conversion of a varchar data type to a datetime
You can convert a string to a date easily by:
CAST(YourDate AS DATE)