I was able to successfully create a linked server to a mySQL db using the query below:exec sp_addlinkedserver@server='serverName', @srvproduct='databaseName', @provider='MSDASQL', @datasrc='ODBCName', @provstr='DATABASE=databaseName;DSN=ODBCName;OPTION=0;PWD=;SERVER=localhost;UID=User'
Now, the next thing I'd like to do is query against the mySQL database but it's not working:select * from openquery(serverName, 'select * from ODBCName.clienthistory')
Can anyone please tell me what I am doing wrong? Thanks!