This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
'Creating a slicer that filters multiple columns' solution from Marco (link) works great with Import storage mode.
Unfortunately, same desing based on DQ table (on Azure SQL Database) returns an error:
Incorrect syntax near ')'.. The exception was raised by the IDbCommand interface.
After reviewing generated query, it is clear that the search condition is missing in the last JOIN. There are only brackets after ON keyword at the end of SQL statement:
)
AS [semijoin1] on
(
)
)
GROUP BY [semijoin1].[c12]Query returns syntax error due to the missing code.
I was able to fix it in the management studio by adding missing part of the join and with that, query worked and returned expected values:
)
AS [semijoin1] on
(
basetable0.c10 = semijoin1.c10
)
)
GROUP BY [semijoin1].[c12]
I was using 2.85.985.0 64-bit version.
Cheers,
Raf
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.