Larger & Cheap(er?) Monitors
I stopped by Compusa on the way home to pick up a package of blank DVD's and did the 10...
2009-05-18
782 reads
I stopped by Compusa on the way home to pick up a package of blank DVD's and did the 10...
2009-05-18
782 reads
If you are a leader of a Microsoft-related user’s group, and you haven’t done so already, you will want to...
2009-05-18
566 reads
If you want to be the first on your block to see the CTP (Community Technology Preview) of SQL Server...
2009-05-18
490 reads
As I'm digging more into SQL Server 2008 encryption I'm learning some interesting things about how SQL Server handles encryption....
2009-05-18
2,705 reads
Keynote speaker, Bill Veghte, Senior Vice President of Windows Business at Microsoft.
TechEd 2009 was started with a keynote presentation from...
2009-05-18
1,233 reads
My rolling 30 day post count dropped crazily this weekend. I noticed, but with family committments, I didn't do anything...
2009-05-17
636 reads
As none of us are immune to the current financial crisis, and your development projects have probably come to a...
2009-05-16
760 reads
I went over last night to do a presentation to the group managed by Bonnie and Lynn. Had 11 in...
2009-05-15
639 reads
Note:Since there have been several comments on this, I'm using parameterization at the application layer in the security sense of...
2009-05-15
2,707 reads
The best of Tech Ed in Los Ageles award winners were selected from Windows IT Pro and SQL Server Magazine,...
2009-05-15
488 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