Link: Avoiding Burnout
Ran across this article about burnout and thought it worth posting. Burnout is not fun to experience and heading it...
2008-05-29
1,428 reads
Ran across this article about burnout and thought it worth posting. Burnout is not fun to experience and heading it...
2008-05-29
1,428 reads
There is a little quirk with NULLs when using the NOT IN qualifier. I use the term "quirk" loosely here...
2008-05-29
1,588 reads
Brian Kelley posted Giving a Presentation about a week ago and is worth reading, in particular his suggestion about Toastmasters...
2008-05-28
1,464 reads
Or maybe part 3, depending.
Amazon reduced the cost of the Kindle yesterday. It's $40 off, a 10% discount, down...
2008-05-28
1,688 reads
Last night the Midlands PASS Chapter had the pleasure of hosting SQL Server MVP Brian Knight. I was able to...
2008-05-28
1,550 reads
After being gone for 4 days, I've got a little catching up to do. I try to be prepared before...
2008-05-27
1,500 reads
Received news today that one of my submitted sessions - Should You Move Into Management - was accepted for the summit. Good...
2008-05-27
1,346 reads
I get a lot of questions about virtualization and really have few answers. At a high level it's not hard...
2008-05-25
1,684 reads
Tuesday, May 27, 2008
Speaker: SQL Server MVP Brian Knight
The Midlands PASS chapter will hold a special meeting on...
2008-05-23
1,730 reads
The dates for Microsoft's TechEd 2008 are fast approaching here in North America. Sandwiched between the two weeks of this year's...
2008-05-23
1,953 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