Video: Walk & Talk #002 – RTO
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
503 reads
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
503 reads
Recovery Time Objective (RTO)
What is it and why does it matter?
I am actually walking this time! Join me to walk...
2014-09-18
221 reads
Once you have a query that is returning the data you like in SSMS you have a few options to...
2014-08-19
40,299 reads
Once you have a query that is returning the data you like in SSMS you have a few options to...
2014-08-19
816 reads
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
873 reads
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
399 reads
Walk & Talk #001 – Unknown or Null Values
Ride with us in this video as we head to Richmond, Virginia to present...
2014-07-21
614 reads
Blacklist vs Whitelist
Are you on the Whitelist?
I think just about everyone is familiar to some degree with the concepts of...
2014-07-14
3,918 reads
Do you always need a demo?
Is a demo always needed?
One of my more popular presentations I have been doing as...
2014-07-03
669 reads
A new way to train in SQL Server.
I had an idea a few years back about a training event unlike...
2014-06-02
678 reads
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...
By Arun Sirpal
You have used Claude. But which Claude? The Claude app (claude.ai, the desktop and...
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