Tips on Getting HIred – Part 3
Part 1 discussed ways to find opportunities, Part 2 was about how to get more interviews, and today we’ll cover...
2009-06-17
994 reads
Part 1 discussed ways to find opportunities, Part 2 was about how to get more interviews, and today we’ll cover...
2009-06-17
994 reads
I added a new blog to my reader today: The Client Revolution.
I heard about this from @NeilDavidson, and he mentioned...
2009-06-16
663 reads
I was out Friday night with family at Parker Days, the festival downtown in my little city and checked email...
2009-06-16
705 reads
I wasn’t able to attend this event, but did participate as a sponsor and I had this follow up message...
2009-06-16
650 reads
The DevTeach/SQLTeach keynote was from Tim Huckaby, founder of InterKnowlogy.
DevTeach/SQLTeach was held this past June 8-12 in Vancouver, BC at...
2009-06-16
735 reads
Having been married to Microsoft for most of my professional career doesn’t mean I drink the Kool-Aid.
I have had...
2009-06-16
765 reads
Yesterday I posted Part 1 containing five ideas for those looking for work. Today I’m going to focus on what...
2009-06-16
998 reads
This is part 1 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-06-15
1,693 reads
I didn’t attend, but wanted to get this written down somewhere!
I’m just catching up on email, Ken Starnes said all...
2009-06-15
540 reads
Over the weekend I received the great news that I've been selected to present a new session, Gather SQL Server...
2009-06-15
353 reads
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...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
i have huge table with lot of data and is also wide. i took...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
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