New Technique to Steal From Baggage
I first saw this on funsec security discussion list:
Dwarves zipped in
suitcases steal from Swedes
The gist of the story...
2008-01-25
786 reads
I first saw this on funsec security discussion list:
Dwarves zipped in
suitcases steal from Swedes
The gist of the story...
2008-01-25
786 reads
Here's a post from the Windows Server Performance Team:
An Overview of Troubleshooting Memory Issues
The post discusses the following issues:
Physical...
2008-01-25
1,186 reads
On the Microsoft Data Platform Insider blog, there is a post indicating new roadmap dates:
Microsoft SQL Server 2008 Roadmap...
2008-01-25
1,642 reads
Saw System Sessions posted on the PSS blog and it shows an example of information being written to the error...
2008-01-23
607 reads
One way to find the rows from one table that don't match another table is to use a sub-query. Here is...
2008-01-22
536 reads
It's Martin Luther King, Jr. day here in the US where we remember the famous civil rights leader. So my...
2008-01-21
676 reads
First time I've noticed this being offered, saw it posted on the Orlando .Net Users Group (ONETUG) site. Sign up...
2008-01-21
1,443 reads
This weekend, I had the unique opportunity to donate some time to a worthwhile charity organization. Through the efforts of...
2008-01-21
841 reads
I was chatting with a friend recently and in the course of 'what are you up to lately' I mentioned...
2008-01-20
488 reads
There's always been some confusion about models in Reporting Services, many people ignore them thinking that they are only for...
2008-01-18
1,559 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