The Advantage of Seattle - Where to host the PASS Community Summit
I heard during last week that the 2009 PASS Community Summit will be back in Seattle, on Nov 3-6 next...
2008-11-25
1,568 reads
I heard during last week that the 2009 PASS Community Summit will be back in Seattle, on Nov 3-6 next...
2008-11-25
1,568 reads
2008-11-25
510 reads
2008-11-25
501 reads
2008-11-25
513 reads
2008-11-25
3,388 reads
I definitely need to write up a few summaries about last week, but right now I'm a bit buried with...
2008-11-24
1,585 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-24
488 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-24
511 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-24
776 reads
I got back Friday afternoon from the PASS Summit and immediately was busy with family stuff. In fact, through Saturday...
2008-11-23
694 reads
By SQLPals
Track SQL Server Configuration Changes Using the Error Log If you...
Good documentation gets you started. Good books get you deep. After years of working...
By Vinay Thakur
In previous posts, we looked at the SQL Server engine. for us DBAs, the...
We have a SQL Server installed. We have a 500GB drive for the database....
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...
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