• You would also use single quotes for escape sequence.

    Lets say you have a query like this in Oracle:

    SELECT employee from Departments where employee='John'

    In order to have it run in SQL Server as a Linked Server you will do this:

    SELECT employee from OpenQuery(LinkedServerName,'SELECT employee from Departments where employee=''John''')

    Hope this will help 🙂