PASS Elections part two
Tim Ford is running for a seat on the PASS Board of Directors and has my vote. Yes I think...
2013-09-24
597 reads
Tim Ford is running for a seat on the PASS Board of Directors and has my vote. Yes I think...
2013-09-24
597 reads
I as well as many others have a decision to make on who I am voting for the PASS Board...
2013-09-23
581 reads
I have been working recently in making sure that max memory is configured for the hundred plus database servers I...
2013-09-20
1,153 reads
It was a huge honor to be chosen for the 2013 US tour of SQL in the City. Red Gate...
2013-08-30
1,196 reads
<begin soap box rant>
Time and time again I find myself having to email people to remind them about how and...
2013-08-30
1,348 reads
Recently attempting to install a new three node cluster I ran into a new issue. Once I was able to...
2013-08-28 (first published: 2013-08-21)
1,278 reads
In April 0f 2012 I was fortunate enough to be asked to become Linchpin People LLC’s first ever TeamMate. (blog)....
2013-08-13
831 reads
PASS Summit 2013 will be my fifth Summit to attend. I wrote a blog post about how different my fourth...
2013-08-09
634 reads
I started this post over a year ago and have just now come back around to finish it. Over the...
2013-07-24
651 reads
I have been working on a project recently to collect system metrics of a SQL Server environment. One of the items...
2013-06-27
1,393 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
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...
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