2018-11-09
818 reads
2018-11-09
818 reads
I read Carlos Robles blog on creating an Azure Data Studio (ADS) insight widget and decided to try this for...
2018-11-08
1,034 reads
With so many companies looking at other platforms, when should an organization consider changing their database? Steve Jones has a few thoughts.
2018-11-08 (first published: 2015-01-20)
254 reads
2018-11-08
847 reads
I’m only at the PASS Summit for two days, but they will be busy. If you’re at the event and...
2018-11-07
245 reads
2018-11-07
84 reads
2018-11-06
146 reads
2018-11-06
696 reads
I used to use ALT+X to execute queries in SSMS. I spent years with this shortcut, but as I started...
2018-11-05 (first published: 2018-10-23)
2,234 reads
2018-11-05
64 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