Starting a Technical Blog (Link)
Brent Ozar had a nice post recently on starting a technical blog, well worth reading and a good addition to...
2008-12-07
274 reads
Brent Ozar had a nice post recently on starting a technical blog, well worth reading and a good addition to...
2008-12-07
274 reads
With each new release of SQL Server version, there is something new to learn. In SQL Server 6.5 days, it...
2008-12-05
787 reads
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
430 reads
One interesting thing about doing the podcasts and working from home is that I tend to shave a bit more...
2008-12-05
391 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
489 reads
I attended this years PASS Summit in Seattle and it turned out to be a great event. Many of the...
2008-12-04
475 reads
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,074 reads
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
324 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-12-04
858 reads
Last event of the year here in Florida. I'll be heading to the Tampa Code Camp to do a presentation...
2008-12-04
224 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