SSIS – Avoid OLE DB Command
I decided to do a little performance testing on some common SSIS “Tricks” that increase speed and effectiveness of SSIS...
2008-12-29
14,305 reads
I decided to do a little performance testing on some common SSIS “Tricks” that increase speed and effectiveness of SSIS...
2008-12-29
14,305 reads
I know it's not April 1st yet, but I wanted to throw out a couple comments and a challenge well...
2008-12-28
1,513 reads
Tia came down and asked if we should do something with the kids, bowling, movies, etc. I told her I...
2008-12-26
1,432 reads
I got my Toshiba Qosmio a little over a year ago and it has been a great machine for me...
2008-12-26
1,448 reads
Data mining is commonly used to find otherwise undetectable patterns in related sets of data. However, sometimes these patterns provide...
2008-12-26
1,522 reads
During a recent class I happened to mention something about grasshopper, and a student wasn't familiar with the reference to...
2008-12-25
1,770 reads
I'm sure some of the geeks out there are logging onto the web, checking feeds, and whiling away some of...
2008-12-25
1,393 reads
As we try and evolve our automotive industry, and perhaps our energy policy, to move into the future in the...
2008-12-24
1,487 reads
I'm enjoying today with family and hope you are as well. Nothing complicated today, just some appropriate music!
Bruce Springsteen - Santa...
2008-12-24
1,467 reads
It was only a year ago that I moved from the Blackjack to the Blackberry Curve and overall I was...
2008-12-23
1,413 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