MySQL Simple Table Synchronization? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T03:33:39Zhttp://stackoverflow.com/feeds/question/518847http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/518847/mysql-simple-table-synchronization0MySQL Simple Table Synchronization?GateKiller2009-02-06T02:10:42Z2009-02-06T03:51:01Z
<p>Ok, So I'm developing a website which to begin with will have 3 clear sub sites: Forum, News and a Calendar.</p>
<p>Each sub site will have it's own database and common to all of these databases will be a user table which needs to be in each database so that joins can be done.</p>
<p>How can I synchronize all the user tables so that it doesn't matter in which database I make an update, all the databases will have the same user table.</p>
<p>I'm not worried if there is a short sync delay (less than 1min) and I would prefer that the solution was a simple as possible.</p>
<p>Many Thanks</p>
http://stackoverflow.com/questions/518847/mysql-simple-table-synchronization/518854#5188541Answer by kquinn for MySQL Simple Table Synchronization?kquinn2009-02-06T02:12:02Z2009-02-06T02:12:02Z<p>Why do the sub-sites need to have their own databases? Can't you just use one database, with separate tables for each of the applications? Or, in PostgreSQL, you could use schemas to the same effect.</p>
http://stackoverflow.com/questions/518847/mysql-simple-table-synchronization/518889#5188890Answer by ʞɔıu for MySQL Simple Table Synchronization?ʞɔıu2009-02-06T02:31:23Z2009-02-06T02:31:23Z<p>Though I would hardly endorse an architecture like this, <a href="http://dev.mysql.com/doc/refman/5.0/en/federated-use.html" rel="nofollow">federated tables</a> may do what you want.</p>
http://stackoverflow.com/questions/518847/mysql-simple-table-synchronization/518909#5189090Answer by womble for MySQL Simple Table Synchronization?womble2009-02-06T02:46:48Z2009-02-06T02:46:48Z<p>A single app can log into more than one database. While I'd advocate kquinn's answer of "all in one DB", becaue joins will work then, if you <em>really</em> must have separate databases, at least have the user table accessed from one database. "Cloning" a table across multiple databases is fraught with so much peril it's not funny.</p>
http://stackoverflow.com/questions/518847/mysql-simple-table-synchronization/519016#5190160Answer by GateKiller for MySQL Simple Table Synchronization?GateKiller2009-02-06T03:51:01Z2009-02-06T03:51:01Z<p>I was over complicating the problems/solution.</p>
<p>Since the databases will (for the time being) exist on the same server, I can use a very simple <a href="http://dev.mysql.com/doc/refman/5.1/en/create-view.html" rel="nofollow">View</a>.</p>