4

How can I connect to a SQL Server Database from a MySQL Server? I need to use the MySQL as a proxy DB (querying all the SQL servers and MySQL connected to it).

I need a functionality sort of "linked server" one on SQL server.

1
  • dev.mysql.com/tech-resources/articles/dbixmyserver.html here they talk about something useful: what do you think about it? Commented Oct 24, 2010 at 15:49

1 Answer 1

2

You can't - the closest MySQL has is the FEDERATED engine, but it only supports connecting to other MySQL instances, not any other database vendor.

Only SQL Server's Linked Server and Oracle's Database Link technology support connecting to other database vendors (that I'm aware of), so you'd have to use SQL Server as the proxy to MySQL -- not the other way around.

Sign up to request clarification or add additional context in comments.

3 Comments

Thanks, is there any proxy software to use instead?
@Andy: Sorry, I'm not aware of any or I'd have provided it.
dev.mysql.com/tech-resources/articles/dbixmyserver.html here they talk about something useful: what do you think about it?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.