SQL Saturday #14 - Pensacola
I committed today to attend SQL Saturday #14 in Pensacola on June 6, 2009. I'll be giving The Modern Resume...
2009-03-19
579 reads
I committed today to attend SQL Saturday #14 in Pensacola on June 6, 2009. I'll be giving The Modern Resume...
2009-03-19
579 reads
I joined in late to a conference call this morning from Quest where a number of their experts were talking...
2009-03-19
1,071 reads
I tend to work with a fair number of documents in my job. Between articles that are sent to me,...
2009-03-18
1,127 reads
Yesterday I presented to the Charlotte SQL Server User's Group. Since I live in Denver, it didn't make a lot...
2009-03-18
1,309 reads
Since I’m doing more speaking this year, I decided to spend a bit of time working on my delivery and...
2009-03-17
928 reads
I try to go to a spring training game once or twice a year and it serves as a useful...
2009-03-17
714 reads
Most of the time, you want to have a SQL result in a particular order. Occasionally you just don't care....
2009-03-16
3,123 reads
My friend Michael Lato sent me an email asking if I would take a look at his newest venture called...
2009-03-16
510 reads
One of the things that I've struggled with for some time is how to manage my data across multiple machines....
2009-03-16
931 reads
We just had our bi-monthly SQL group meeting (www.opass.org) with Kendal Van Dyke presenting The Truth About Disk Performance & Configuration,...
2009-03-16
566 reads
By Vinay Thakur
In previous posts, we looked at the SQL Server engine. for us DBAs, the...
By Arun Sirpal
You have used Claude. But which Claude? The Claude app (claude.ai, the desktop and...
By Steve Jones
This month we have a new host, Meagan Longoria, who graciously agreed to help...
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