Answers to Advanced SSIS Interview Questions
Last week I wrote a set of Advanced SSIS Interview Questions. Here are the answers I came up for these. ...
2009-06-12
52,871 reads
Last week I wrote a set of Advanced SSIS Interview Questions. Here are the answers I came up for these. ...
2009-06-12
52,871 reads
We had my organization's semi-annual combined IT and financial meeting this morning. At the end of these meetings awards and...
2009-06-12
669 reads
I study karate on a regular basis, and over the years I've practiced a number of different martial arts, most...
2009-06-12
688 reads
While I was in Pensacola last weekend, I sat next to Andy Warren and I was telling him about getting...
2009-06-11
698 reads
I picked up a copy of this from the local library after reading The Making of the Atomic Bomb. Oppenheimer...
2009-06-11
605 reads
First Man: The Life of Neil A. Armstrong ($14 @ Amazon) was a good book, enjoyed reading it. Some interesting tidbits...
2009-06-11
356 reads
Patrick Leblanc is the event lead for SQLSaturday #17 coming up soon on August 1st. Patrick emailed me just a...
2009-06-11
541 reads
Early last week, my church suffered a lightning strike that did quite a bit of damage (relatively speaking) to computer and...
2009-06-11
834 reads
I was tagged by Scary DBA and recent MVP awardee Grant Fritchey with the latest viral question:
“So You’re On A...
2009-06-11
1,348 reads
The point of this post is to cleary explain how the combination of the use of data definition language for your temporary...
2009-06-11
1,107 reads
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) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
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...
Comments posted to this topic are about the item Every Database Has Problems
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