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][1] and [GoldenGate][2], plus there's even an open source one called [Zizzy][3], 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][4] 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][5] 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.*  


  [1]: http://www.quest.com/shareplex-for-oracle/
  [2]: http://www.goldengate.com/technology/tdm.html
  [3]: http://sourceforge.net/projects/zizzy
  [4]: http://www.goldengate.com/solutions/eda.html
  [5]: http://www.oracle.com/technology/deploy/availability/htdocs/LogMinerOverview.htm