Drill Down with Power BI Visualizations
A couple weeks ago in a recent update to Power BI, an enhancement was added to enable a drill-down action...
2015-10-14
414 reads
A couple weeks ago in a recent update to Power BI, an enhancement was added to enable a drill-down action...
2015-10-14
414 reads
A couple weeks ago in a recent update to Power BI, an enhancement was added to enable a drill-down action...
2015-10-14
1,975 reads
Thank you to everyone that attended my Power BI webinar last month, September 29th. Sorry its taken me a while...
2015-10-13
278 reads
Thank you to everyone that attended my Power BI webinar last month, September 29th. Sorry its taken me a while...
2015-10-13
546 reads
SQL Saturday #442 in Orlando, FL has come and gone but what a turn out! The event was excellent, we...
2015-10-12
471 reads
October 4th of this month was my seven year anniversary as an employee of Pragmatic Works. Things have changed a...
2015-10-06
558 reads
SQL Saturday #442 is upon us and yours truly will be presenting in Orlando, Florida on October 10th alongside Mitchell...
2015-09-29
1,024 reads
This week I’m teaching the Pragmatic Works Intro to MDX virtual training class. A student in the class asked how...
2015-09-16
461 reads
One of the current issues in Power BI is the inability to specify a Date table. The Date table is...
2015-09-15
918 reads
Thank you to everyone that attended my webinar titled Power Pivot 101: An Introduction! Also, thank you to Thomas Leblanc...
2015-09-14
635 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers