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,287 reads
Once you have a query that is returning the data you like in SSMS you have a few options to...
2014-08-19
813 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
613 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,908 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
668 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
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
I have a plan which in sys.query_store_plan shows: Last_compile_start_time of 2026-04-23 00:13:00.7670000 +00:00 Last_execution_time...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams n;See possible answers