Monday Morning SQL Break – November 2, 2015
It’s Wednesday and time to revive the Monday summary of last week’s blog activity and links shared on twitter. Hopefully I’ll be...
2015-11-04
427 reads
It’s Wednesday and time to revive the Monday summary of last week’s blog activity and links shared on twitter. Hopefully I’ll be...
2015-11-04
427 reads
I’m still catching up after my 13th PASS Summit and as usual the longer I wait the shorter the notes...
2015-11-04
536 reads
PASS Summit 2015 is over and of course, no PASS Summit is complete without also attending SQLSaturday Oregon. Below are...
2015-11-04
610 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
394 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
278 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
285 reads
The day finally came and I was fortunate, no I was blessed to be a part of the PASS Summit...
2015-11-04
536 reads
Very few people have thought about this performance killer. It is all about report parameter of text type.
The initial situation
There...
2015-11-04 (first published: 2015-10-22)
2,438 reads
I recently gave my SQL Server Security for Everyone session at Summit 2015. (I’m still in awe about that by...
2015-11-04
518 reads
Spend any time around a 4 year old, and you will inevitably find yourself involved in a conversation which evolves into this:
Please do this thing Why? Reasonable answer Why? Restatement...
2015-11-04
6 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...
Yes, luxury packages in Andaman are highly popular among honeymooners due to their romantic...
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;See possible answers