show/hide this revision's text 4 added 439 characters in body

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 SharePlex and GoldenGate, plus there's even an open source one called Zizzy, but I can't say that I've tried it.

edit 1: if you're not wanting to feed the updates into another database, GoldenGate's Event-Driven Architecture 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.

edit 2: 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 LogMiner 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.

show/hide this revision's text 3 deleted 9 characters in body

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 SharePlex and GoldenGate, plus there's even an open source one called Zizzy, but I can't say that I've tried it.

edit: if you're not wanting to feed the updates into another database, GoldenGate's Event-Driven Architecture provides a means to hook up the replication to a messaging queue like JMS message bus.

show/hide this revision's text 2 added 278 characters in body

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 SharePlex and GoldenGate, plus there's even an open source one called Zizzy, but I can't say that I've tried it.

edit: if you're not wanting to feed the updates into another database, GoldenGate's Event-Driven Architecture provides a means to hook up the replication to a messaging queue like JMS.

show/hide this revision's text 1