Moving to Query Store
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
2018-11-26
70 reads
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
2018-11-26
70 reads
2018-11-26
1,175 reads
Testing our database code is a fairly immature process for many of this, but perhaps we could build a guide that helps everyone learn to write better and more comprehensive tests.
2018-11-23 (first published: 2014-10-07)
524 reads
2018-11-23
889 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-11-22 (first published: 2018-11-05)
2,254 reads
2018-11-22
40 reads
2018-11-22
1,166 reads
Just before the US holiday, Steve wants you to think about the security of our systems.
2018-11-21
51 reads
I got my feedback the other day, and was a bit surprised by a comment. I wasn’t having a great...
2018-11-21
760 reads
2018-11-21
882 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