First Day of Summit
My first day in Seattle has ended. My flight arrived around 12:30 and I was in good company with John...
2011-10-11
739 reads
My first day in Seattle has ended. My flight arrived around 12:30 and I was in good company with John...
2011-10-11
739 reads
Watching the twitter sphere it is apparent that many of the SQL Nation are in route to Seattle WA today....
2011-10-10
468 reads
Last year at the Summit I missed out on this really cool concept. Donate your unused items from your hotel....
2011-10-06
694 reads
I decided to start monitoring the amount of free space in my database files so that I can make sure...
2011-10-05
1,578 reads
Well it isn’t quite over for me just yet, I still have a flight home tomorrow and can’t wait to...
2011-10-02
473 reads
I flew into Austin Texas today and got to spend time with a lot of great people. The journey started...
2011-10-01
526 reads
Truck is loaded up and heading to the airport to make an appearance at SQL Saturday #97 in Austin TX...
2011-09-30
1,312 reads
I love wearing all my SQL Saturday speaker shirts. Here lately the trend has been nice golf or running shirts...
2011-09-30
1,429 reads
This is post is going to be very simple but it is something I come across ever so often and...
2011-09-28
5,013 reads
This morning I was working on getting all new inherited SQL Servers patched to current levels of service packs when...
2011-09-27
1,474 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...
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 have huge table with lot of data and is also wide. i took...
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