I tried this
SELECT convert(datetime, \'23/07/2009\', 111)
but got this error
The conversion of a varchar data type to a datetime
Try:
SELECT convert(datetime, '23/07/2009', 103)
this is British/French standard.