Applications for using couchDB and a RDBMS together - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:05:31Z http://stackoverflow.com/feeds/question/647540 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/647540/applications-for-using-couchdb-and-a-rdbms-together 4 Applications for using couchDB and a RDBMS together mt3 2009-03-15T09:21:49Z 2009-03-16T06:35:11Z <p>Wondering if there was a scenario where one would use a document-based DB and a relational DB together in a best-of-both-worlds scenario? </p> http://stackoverflow.com/questions/647540/applications-for-using-couchdb-and-a-rdbms-together/647590#647590 1 Answer by Hank for Applications for using couchDB and a RDBMS together Hank 2009-03-15T10:05:32Z 2009-03-15T10:05:32Z <p>One idea is to use a relational database as the main data store and a document-based db as a data distribution mechanism from the back end to the front end(s).</p> http://stackoverflow.com/questions/647540/applications-for-using-couchdb-and-a-rdbms-together/648047#648047 1 Answer by jhs for Applications for using couchDB and a RDBMS together jhs 2009-03-15T16:06:54Z 2009-03-15T16:06:54Z <p>In my view, until I see an actual (open source or otherwise transparent) application successfully doing this, I will remain skeptical that it's worthwhile for projects with fewer than a dozen developers.</p> <p>I suspect that by choosing one database over another and sticking with it--in good times and in bad--developers will reduce both the complexity of the data model and the maintenance cost of the code. Also, by choosing two databases, one runs the risk of a worst-of-both-worlds scenario, with data which is both difficult to manipulate and report on (CouchDB) and also not scalable (RDBMS).</p> http://stackoverflow.com/questions/647540/applications-for-using-couchdb-and-a-rdbms-together/648766#648766 1 Answer by mdorseif for Applications for using couchDB and a RDBMS together mdorseif 2009-03-15T23:06:03Z 2009-03-16T06:35:11Z <p>We use a mix of RDBMS and CouchDB. The RDBMS (IBM DB/2) is used for "exact" data where transactions make things easier. Examples are bookkeeping of money and inventory. CouchDB is used for archival of "finished" records from the RDBMS, digital asserts (JPEGs, scanned documents) and badly structured information, e.g. information acquired via shipping companie's track and trace systems.</p>