Last Week Reading (2019-03-03)
Hey everyone! I was very busy at the SQLBits conference last week, but it did not stop me to prepare...
2019-03-03
308 reads
Hey everyone! I was very busy at the SQLBits conference last week, but it did not stop me to prepare...
2019-03-03
308 reads
Hello folks! This time quick review about Kubernetes, containers, automatic deployment of Data Factory and few things about Power BI....
2019-02-25
160 reads
As Chief Cloud Architect with Adatis Consulting, Simon Whiteley has been working with the Microsoft BI Stack for a decade,...
2019-02-22
151 reads
I’m super excited about the fact I’ll be speaking at SQLBits this year. It’s my first time as a speaker...
2019-02-18
120 reads
Power BI Desktop February 2019 Feature Summary Preview of new Key Influencers visual and much more… The February release of...
2019-02-17
113 reads
Check how many bicycles he has got at home and where was the destination of last year of a 400...
2019-02-15
109 reads
Hello Data Folks! It has been a very fast week and an extensive weekend whilst I have been at SQL...
2019-02-11
126 reads
Press Webinar Follow-Up: Top 4 Data Technology Trends for DBAs in 2019 Very interesting discussion panel led by Kevin Kline...
2019-02-03
170 reads
Hello guys, a few internet posts that you might find interested. Press Azure SQL Analytics—Automating Deployment Apparently, it wasn’t an...
2019-01-27
181 reads
Introduction Mladen Prajdic is a Data Platform MVP from Slovenia. He’s been professionally programming for over 15 years, developing di?erent...
2019-01-25
185 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers