Out of Space
It seems that often I see posts that say “I’m out of space on my drive, what do I do?”...
2009-09-28
1,555 reads
It seems that often I see posts that say “I’m out of space on my drive, what do I do?”...
2009-09-28
1,555 reads
I have been installing and configuring SSRS since the initial release. I have always encountered several different caveats when upgrading...
2009-09-28
5,168 reads
It’s probably a key stereotype of our business that the sales team doesn’t really get along with those in operations/production....
2009-09-28
952 reads
If you are available for lunch today don’t forget to sign in and watch Thomas LeBlanc talk about Historical DMV...
2009-09-28
588 reads
I stumbled on this article about a spin-off from MIT using solar power to create hydrogen. I think it's a...
2009-09-28
1,100 reads
Cross posted from The Goal Keeping DBA:
This is about a long term goal that I’ve had which isn’t posted on...
2009-09-27
920 reads
I saw this post by Neil Davidson about sales people being different that discusses how sales people are compensated and...
2009-09-27
2,498 reads
I was asked recently by Chris Shaw who is the site manager for SSWUG.org, if I was interested in speaking...
2009-09-27
465 reads
It had been about 5 years since I’d bought a new desktop machine for my home, and with my oldest...
2009-09-26
548 reads
I've been wanting to play with the Chroma Key features of my video editing, but I haven't really spent time...
2009-09-25
2,324 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