Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.