Speaking at Upcoming SQL Saturday events
I’ve got a couple of speaking engagements coming up during the next few months, and a few others I’m hoping...
2010-04-21
577 reads
I’ve got a couple of speaking engagements coming up during the next few months, and a few others I’m hoping...
2010-04-21
577 reads
Really short post here. I just found out that Stacia Misner (blog |blog 2 | @StaciaMisner) and Ross Mistry have released...
2010-04-21
568 reads
Just for info that SQL Server 2008 R2 (32bit & 64bit) is available now and you can download the trial
http://bit.ly/18gCbc
*...
2010-04-21
635 reads
SQL Server 2008 R2, it comes with new editions and lot of new features, also supporting the SQL Azure & PowerPivot...
2010-04-21
1,381 reads
Microsoft scheduled a conference call this morning, and I jumped on since I was laid up in bed with a...
2010-04-21
1,691 reads
FINALLY!
It’s not like Don Gabor had the article done in January or anything…oh wait. He did have the article done...
2010-04-21
692 reads
We just put the site up, starting a little earlier than last year, and over the course of this week...
2010-04-21
499 reads
If you weren't aware, Microsoft held a BI telelconference today which announced the release to manufacturing (RTM) of SQL Server...
2010-04-21
1,187 reads
For the last two years or so, in one capacity or another I have been running SQL Server in virtual...
2010-04-21
659 reads
The DMV for Day 20 is sys.dm_exec_cached_plans which is described by BOL as:
Returns a row for each query plan that...
2010-04-20
1,090 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