I'm looking for a system or a way to capture the transactional data into an analytical system(datawarehouse/nosql database). For Oracle, I think this can be achieved with Asynchronous triggers and Advanced Queues but they doesn't look efficient because with just ROWID from the event object we have to again hit the relational database to capture the updated/inserted data. Are there any efficient ways to capture the delta changes without hitting the database. Triggers can do but they are performance hit as they are done as part of the transaction.
Thanks for the responses.