Ok, I have been trying to figure out where to ask this and have not found a good solution, so I will start here and move along if/when needed. So, I have my CRM on SQL 2k and another server running MySQL. What I need to do is open a connection to both of these databases within one query. Is that possible? One is a Windows box and the other is a Unix box.
Oh, it is a web app, but I can call into just one box if it is better to do the join from within one db.
Does that make sense? What I want to do (Basically) is:
The code for the query isn't the issue, the issue is really the use of the tables on two disparate servers. Ideas?
wb
Oh, it is a web app, but I can call into just one box if it is better to do the join from within one db.
Does that make sense? What I want to do (Basically) is:
Code:
select *
from sqlservertbl.field join mysqltbl.field
The code for the query isn't the issue, the issue is really the use of the tables on two disparate servers. Ideas?
wb