Best way to replicate db into other systems - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T22:03:04Z http://stackoverflow.com/feeds/question/285098 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/285098/best-way-to-replicate-db-into-other-systems 2 Best way to replicate db into other systems Phil Freeble 2008-11-12T19:46:49Z 2008-11-13T03:47:39Z <p>What is the best way to replicate the update stream to a large (6TB) oracle db into another non-DBMS system? I don't need to "bulk load" the oracle db, but merely want to flow all updates into another home-grown system in near realtime (10s latency or less). Updates happen at the rate of 150 rows/second representing 10s of megabytes per second.</p> <p>For clarity, let me emphasize that I am not replicating from one db to another. This is an application integration problem: I need to replicate from a db into an in-house, non-db application. I've thought of using an enterprise service bus, but that seems inappropriate.</p> http://stackoverflow.com/questions/285098/best-way-to-replicate-db-into-other-systems/285255#285255 1 Answer by ninesided for Best way to replicate db into other systems ninesided 2008-11-12T20:35:37Z 2008-11-13T03:47:39Z <p>So you're wanting to implement a log based replication scheme that just pumps the transaction log off to a different file system? There are a number of commercial products that will let you do this, the better known ones being <a href="http://www.quest.com/shareplex-for-oracle/" rel="nofollow">SharePlex</a> and <a href="http://www.goldengate.com/technology/tdm.html" rel="nofollow">GoldenGate</a>, plus there's even an open source one called <a href="http://sourceforge.net/projects/zizzy" rel="nofollow">Zizzy</a>, but I can't say that I've tried it.</p> <p><strong><em>edit 1:</strong> if you're not wanting to feed the updates into another database, <a href="http://www.goldengate.com/solutions/eda.html" rel="nofollow">GoldenGate's Event-Driven Architecture</a> provides a means to hook up the replication to a JMS message bus. For application integration, this is the option that I'd go for.</em></p> <p><strong><em>edit 2:</strong> if using a message bus isn't the way you want to go, the only other sensible alternative that I can see is to get your hands dirty and use Oracle's <a href="http://www.oracle.com/technology/deploy/availability/htdocs/LogMinerOverview.htm" rel="nofollow">LogMiner</a> API. IIRC, this is what Oracle uses for features like Streams and DataGuard and it's likely what most Change Data Capture solutions are based on, under the hood.</em> </p>