In my previous post I introduced materialized view concepts. This post begins with an introduction to change data capture technology and describes some of the ways in which it can be leveraged for your benefit. This is followed by a description of FlexCDC, the change data capture tool included with Flexviews. It continues with an overview of how to install and run FlexCDC, and concludes with a demonstration of the utility.
As a reminder, the first post covered the following topics:
- What is a materialized view(MV)?
- It explained that an MV can pre-compute joins and may aggregate and summarize data.
- Using the aggregated data can significantly improve query response times compared to accessing the non-aggregated data.
- Keeping MVs up-to-date (refreshing) is …