Security by Obscurity?
Andy Warren points to a TechNet article about Security by Obscurity and wanted me to post some notes. Let's start...
2008-06-04
960 reads
Andy Warren points to a TechNet article about Security by Obscurity and wanted me to post some notes. Let's start...
2008-06-04
960 reads
First, the usual disclaimer: I'm not a financial professional, so take all of the following with a grain of salt...
2008-06-03
747 reads
Yesterday, I was fighting with an error I have never seen in the replication and not much info can be obtained via...
2008-06-03
16,226 reads
Just took a look at the World Wild Telescope and it looks interesting, perhaps just as importantly looks cool! Don't...
2008-06-03
438 reads
Last month the LCD screen on our treadmill went out. We bought it last Christmas (06) as a present for...
2008-06-02
737 reads
Last call! We've got a 2 day event running this time. Saturday is the more traditional (it's only #4 after...
2008-06-02
237 reads
If you're not familiar with the term it means to make something safe/secure by using a trick to hide the...
2008-06-01
214 reads
A few colleagues of mine, Andy Leonard, Jason Massie, and Chuck Boyce, are all on Twitter. As a matter of fact,...
2008-05-30
1,525 reads
I have a CTP of SSRS 2008 deployed to one of my servers. Today I built a couple of reports...
2008-05-30
2,541 reads
I have been thinking about getting the MCT credential for about five years. During the MVP Summit I attended a...
2008-05-30
1,305 reads
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
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...
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