South Florida Geek Golf
Scott Klein has put together the first annual Geek Golf event. Scheduled for May 8th, 2010, it’s being held at...
2010-02-08
524 reads
Scott Klein has put together the first annual Geek Golf event. Scheduled for May 8th, 2010, it’s being held at...
2010-02-08
524 reads
I'll be presenting two sessions this week (February 9 and 11, 2010), both on SQL Server Indexing. The first is...
2010-02-08
346 reads
If you haven't seen the Simple-Talk newsletter (it's free, so sign up!) you may not have seen my article on...
2010-02-08
1,267 reads
I saw a post recently from my fellow Red Gate-er, Brad McGeHee, on backups. Brad’s got a ton of experience...
2010-02-07
427 reads
I have been trying for a few days to implement a Service Broker implementation to, service the threading framework I...
2010-02-07
547 reads
I have been trying for a few days to implement a Service Broker implementation to, service the threading framework I...
2010-02-07
1,785 reads
They say that imitation is the sincerest form of flattery. I have been following along as Paul Randal has been...
2010-02-07
4,338 reads
This is a short post on SQL Server storage best practice and what i have learned over the years… Much...
2010-02-07
1,340 reads
Useful link. This is a great best practice article/white paper from Tom Davidson and Danny Tambs.
The word document (880kb) can...
2010-02-07
589 reads
I’d like to share a networking success story. Last year, I blogged about my experience at the PASS Summit of...
2010-02-05
1,182 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