Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
As part of enabling Change Data Feed (CDF) on Fabric mirror databases, please consider exposing the Delta Lake table_changes table-valued function so that it can be invoked directly through the Lakehouse T-SQL endpoint.
This functionality would allow users to query incremental changes using familiar T-SQL syntax, improving integration with downstream systems and simplifying change tracking workflows.
Example Usage:
-- Retrieve changes since version 2
SELECT * FROM table_changes('myschema.mytable', 2);
-- Retrieve changes since a specific timestamp
SELECT * FROM table_changes('myschema.mytable', '2025-11-14T12:00:00.000+0000')
ORDER BY _commit_version;
Why this would be helpful:
-> Fabric-Ideas/Enable-Change-Data-Feed-CDF-on-a-Mirror-Database/idi-p/4500759
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.