Why is SQLSaturday Such a Big Secret?
One of the small mysteries of the universe that I have been pondering lately is the fact that so many...
2010-11-10
422 reads
One of the small mysteries of the universe that I have been pondering lately is the fact that so many...
2010-11-10
422 reads
I was in Best Buy, actually returning a couple iPads the other day. I had gotten a few for a...
2010-11-09
1,514 reads
Recently, a friend of mine asked me how he could have the date appended to the end of a file...
2010-11-09
13,858 reads
And glad to be there. I was gone almost 7 days, home only for 24:15:00 before back out on another...
2010-11-09
819 reads
I enjoy blogging. I enjoy passing on the information that I have gathered over the years. I also enjoy doing...
2010-11-09
605 reads
Microsoft announced the RTM of SQL Server 2008 R2 Parallel Data Warehouse, which will be available as an appliance in...
2010-11-09
460 reads
The last post dealt with checking CPU pressure using wait_stats DMV. But, to get a complete picture of CPU Pressure,...
2010-11-09
793 reads
SELECT @@Version
Microsoft SQL Server “Denali” (CTP1) – 11.0.1103.9 (X64)
I’ve been playing with the CTP for a few days (with absolutely no...
2010-11-09
1,428 reads
This week at the PASS Community Summit in Seattle, I’m delivering two full length sessions, one lightening session, and chairing...
2010-11-09
332 reads
Ladies and Gentlemen, SQL Server 2011, aka Denali, CTP 1 is now available as public download :
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6a04f16f-f6be-4f92-9c92-f7e5677d91f9
Although, I'm not attending...
2010-11-09
3,557 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