up vote 2 down vote favorite
1
share [g+] share [fb]

What are your methods of linking data spread over multiple databases architectures (think MySQL vs PostgreSQL etc), into a single application?

Would you create giant hashtables/arrays to match content against one another? Are there other, more effective and less memory-consuming options for doing this?

If you were to use data both from a MySQL & PostgreSQL source, with no way of converting one DB to the other (application constraints, lack of time, lack of knowledge, ... ), how would you go about it?

link|improve this question

75% accept rate
Why not just keep the databases where they are, and just use them as-is. What sort of "linking" do you need to do? – John Saunders Mar 11 '09 at 23:25
feedback

3 Answers

up vote 1 down vote accepted

At least in the case of MySQL, you can use data from multiple databases in a single query anyway, provided the databases are hosted by the same MySQL Server instance. You can distinguish tables from different databases by qualifying the table with a schema name:

CREATE TABLE test.foo (id SERIAL PRIMARY KEY) TYPE=InnoDB;

CREATE DATABASE test2;
CREATE TABLE test2.bar (foo_id BIGINT UNSIGNED, 
    FOREIGN KEY (foo_id) REFERENCES test.foo(id)) TYPE=InnoDB;

SELECT * FROM test.foo f JOIN test2.bar b ON (f.id = b.foo_id);

In PostgreSQL, you can also qualify table references with a schema name. I'm not sure if you can create foreign key constraints across databases, though.

link|improve this answer
feedback

SQL Relay or another sql proxy. http://sqlrelay.sourceforge.net/

link|improve this answer
feedback

If you're looking to create constraints across RDBMSes - you can't.

I'm facing the same issue with running part of an application off PostgreSQL for where it will benefit, and the rest of MySQL where it's better.

I'm doing multiple inserts keyed off the same format of primary information (in my case a generic user ID), so I'm letting the application handle the logic of making sure to ask for the same ID from both DBs.

There's not really a clean way to do this outside of abstracting it to a class or utility function, though, that I've found.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.