New: Cookbooks and AI ExplanationsStep-by-Step recipes to solve problems connected to Roadmaps and Cheat Sheets. Need more details? Use AI buttons for structured and simple explanations with concrete examples throughout the whole platform.Take a look
You want every change out of a database, but nobody will grant you access to its transaction log.
What you'll have at the end
A one-paragraph decision record: log-based or polling for this source, and the one reason it wins
You need
You have one specific source table whose changes you need to capture, and whoever operates it has already refused to grant transaction log access (WAL, binlog, or the equivalent) for it.
Not covered
Trigger-based CDC, which can catch deletes without log access but needs permission to add triggers to the source, a permission this recipe assumes you don't have either.
Checked 26 Aug 2026
Part of the Change Data Capture (CDC) cookbook