A recent and complete rebuild of my MSSQLServer and Latest Version of MySQL ODBC is failing to connect to External MySQL Server
That is, a query like:
SELECT * FROM [TRACKER]...[issues]
SELECT * FROM [TRACKER].[bitnami_redmine]..[issues]
worked prior to this migration, but now issues the following error:
Msg 7313, Level 16, State 1, Line 1
An invalid schema or catalog was specified for the provider "MSDASQL" for linked server "TRACKER".
SELECT * FROM OPENQUERY([TRACKER], 'SELECT * FROM Issues')
Returns Expected Results
Tried
SELECT * FROM [TRACKER]..[bitnami_redmine].[issues]
A four-part name was supplied, but the provider does not expose the necessary interfaces to use a catalog or schema.
In forums, I have scene and added "option=3" to the connection string but I do not know what that option refer too.
That is, a query like:
SELECT * FROM [TRACKER]...[issues]
SELECT * FROM [TRACKER].[bitnami_redmine]..[issues]
worked prior to this migration, but now issues the following error:
Msg 7313, Level 16, State 1, Line 1
An invalid schema or catalog was specified for the provider "MSDASQL" for linked server "TRACKER".
SELECT * FROM OPENQUERY([TRACKER], 'SELECT * FROM Issues')
Returns Expected Results
Tried
SELECT * FROM [TRACKER]..[bitnami_redmine].[issues]
A four-part name was supplied, but the provider does not expose the necessary interfaces to use a catalog or schema.
In forums, I have scene and added "option=3" to the connection string but I do not know what that option refer too.