I Think I Need A Writing Table
I’m writing this Friday evening in Cleveland at the hotel, relaxing after the speaker dinner and getting ready for SQLSaturday...
2012-08-22
701 reads
I’m writing this Friday evening in Cleveland at the hotel, relaxing after the speaker dinner and getting ready for SQLSaturday...
2012-08-22
701 reads
I’m excited to be back on the speaking circuit. I was able to attend SQLSaturday #122 – Louisville thanks to Idera and the ACE program. Now I’m on...
2012-08-22
10 reads
I’m excited to be back on the speaking circuit. I was able to attend SQLSaturday #122 – Louisville thanks to Idera...
2012-08-22
727 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-08-22
1,231 reads
I just booked my tickets for New York City. I’m coming into the city on Sept 27, at 2pm, with...
2012-08-22 (first published: 2012-08-20)
1,587 reads
In our last post, we have gone through the data page structure and we have noticed that there is an...
2012-08-22
7,290 reads
The August round of #meme15 finished up last week with a good number of people participating. The aim of the...
2012-08-21
740 reads
At the end of July I was fortunate enough to visit the City of Angels, Los Angeles, or simply LA....
2012-08-21
938 reads
Auto-deploying AV definitions has become common place throughout the industry. However, this post from the SANS Internet Storm Center raises the...
2012-08-21
1,276 reads
Suppose you want to stop using a DDL trigger for a short period of time, such as the login trigger...
2012-08-21
6,363 reads
By Steve Jones
This month we have a new host, Meagan Longoria, who graciously agreed to help...
By Steve Jones
I’m at the UK Redgate office today, meeting with senior leaders in all areas...
Optimizing Azure SQL Database performance often begins with identifying the most resource-intensive queries. Understanding...
Comments posted to this topic are about the item Creating a JSON Document IV
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Restoring Azure Key Vault Keys...
When the schema of an object is changed, SQL Server wipes out the previous...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT YearEstablished, json_objectagg(city : TeamName) FROM dbo.NFLTeams GROUP BY YearEstablished;See possible answers