Link to home
Start Free TrialLog in
Avatar of kgittinger
kgittingerFlag for United States of America

asked on

open query guidlines

is there a difference between the SQL used via linked server (Open Query) than when running a query on the server itself?  As an example where myfielddate >= '2/08/2011' returns an invalid sintax near '2'

Avatar of pdd1lan
pdd1lan

did you try it:?

convert(char(10),myfielddate,103) >= '02/08/2011'
Avatar of kgittinger

ASKER

Unfortuantely this returns the same error
ASKER CERTIFIED SOLUTION
Avatar of ralmada
ralmada
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
if you still have issues, please post the complete query you're trying to run
Thanks a million!