Do You See What I See?
Working with developers is always very interesting, especially when you are a client. I'm sure that I'm not the best...
2007-08-21
1,410 reads
Working with developers is always very interesting, especially when you are a client. I'm sure that I'm not the best...
2007-08-21
1,410 reads
Book reviews aren't easy and it's always hard to tell if you're telling the reader anything they can't learn from...
2007-08-17
1,349 reads
We went for a site visit Tues and I think it will really work out well for us. Good parking,...
2007-08-17
1,396 reads
I live in Denver. That's in the Mountain time zone, either MDT or MST depending on the time of year,...
2007-08-14
1,430 reads
I've posted in the forums fairly often that there's kind of a black art to performance tuning. As with most...
2007-08-14
1,454 reads
There has been tons of work over the last few decades on queueing theory, mainly in regard to operating systems...
2007-08-11
1,676 reads
I got a note from someone at Red Gate about disengagement with the newsletter and site. Actually it was my...
2007-08-09
1,410 reads
We had a visitor from another group at our recent www.opass.org meeting and it was interesting that one bit of...
2007-08-09
1,334 reads
Article is at http://www.sqlservercentral.com/columnists/awarren/3135.asp. I'll have quite a few more on this subject over the next few months. As I...
2007-08-09
1,359 reads
It's not directly SQL Server, but it does prevent me from working with SQL Server 🙂
So I'm in Virginia this...
2007-08-08
2,899 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