[Off Topic] I’ve caved to peer pressure…
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
620 reads
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
620 reads
You will see this or a similar code sample when referring to clearing the analysis services cache. However, I have...
2008-12-02
571 reads
After taking off 2 days last week for Thanksgiving, and outsourcing 3 editorials (Thanks to Phil Factor and Tony Davis),...
2008-12-02
428 reads
General Thoughts
One of my brother’s favorite lines to use in presentations says it best, “If Microsoft had 10 dollars to...
2008-12-02
959 reads
Recently I needed to rearrange some stuff at the office and part of that included moving our install of Quickbooks...
2008-12-02
250 reads
DBA, database developer, analyst, SQL grunt, or whatever your title may be, there is no question that your role will...
2008-12-02
795 reads
For my colleagues and friend who visit my websites (www.bucketofbits.com, www.tyleris.com, www.timmitchell.net), I just discovered that my web host has...
2008-12-01
794 reads
I ran across this history quiz in Jeff Duntemann's blog and thought I'd give it a try. I managed to...
2008-12-01
432 reads
The new Certified Master program sounds suspiciously like the Microsoft Certified Architect program, which appears to have been revamped to...
2008-12-01
762 reads
Steve Ballmer issued a challenge to MVPs a couple weeks ago, asking them to switch to Live Search this week...
2008-12-01
729 reads
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers