Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
This started happening sometime yesterday and containues. Dataflows that have refreshed daily for months failed, and on investigation, I discovered the Query argument from the Sql.Database options had just been removed. The dataflows do not show they were edited. They're owned by me and still show they're owned by me, and I haven't touched them, but the code itself has changed.
qs = "select * from table",
Source = Sql.Database(server, db_Reporting, [Query=qs, CreateNavigationProperties=false])
is transformed to
qs = "select * from table",
Source = Sql.Database(server, db_Reporting, [CreateNavigationProperties=false])
If I edit the entities to replace the missing Query option, it seems to save, but the option is removed again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.