Speaking At SQL Saturday #21
Well looks like I will be packing my bags for Sunny Orlando. I Just found out that my abstract was...
2009-09-04
415 reads
Well looks like I will be packing my bags for Sunny Orlando. I Just found out that my abstract was...
2009-09-04
415 reads
On Monday August 1st I had the pleasure of speaking to a group of college students that all belong to...
2009-09-04
395 reads
From 7:45 pm (Eastern DST) on Tuesday, September 1st until 8:00 pm on Wednesday, September 2 PASS provided free online...
2009-09-03
600 reads
At times it felt like a party, it had enough content to be a mini-conference, and we learned that some...
2009-09-03
873 reads
Well, it finally happened, the complete disaster recovery article was reviewed, reviewed again, rewritten, revisited…you get the picture…and published. As described...
2009-09-03
2,187 reads
In an experiment in SQL Server community involvement, the members of Red Gate Software’s software development usability team have created...
2009-09-03
405 reads
Just saw the the answer by michael Hotek for how log reader works on replication: looks very great:http://social.msdn.microsoft.com/Forums/en-US/sqlreplication/thread/d2d2e1c6-01ee-439b-93e8-e31c77c0cd28/Thanks Michael Hotek...
2009-09-03
823 reads
For the second year in a row, SQLServerCentral.Com and Red Gate Software have sponsored the Exceptional DBA of the Year...
2009-09-03
705 reads
Hi,Just want to share info about replication script which i generally use. this is good for sql server 2000 Transaction...
2009-09-03
757 reads
The next SQL Bits conference, the largest SQL Server conference in Europe, will be held at the Celtic Manor Resort...
2009-09-03
428 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