Scripting out users
Many of us know the importance of scripting out our users on a regular bases in order to be able...
2012-11-02
1,981 reads
Many of us know the importance of scripting out our users on a regular bases in order to be able...
2012-11-02
1,981 reads
When an error is raised by the SQL Server Database Engine, we usually see the Severity Level as in the...
2012-11-02
440 reads
Will you be at Summit 2012? I will be. I will even be pretty easy to find on multiple occasions. If you haven’t seen my...
2012-11-02
16 reads
Will you be at Summit 2012?
I will be. I will even be pretty easy to find on multiple occasions. If...
2012-11-02
1,025 reads
Just 5 days to Summit kick off. Today’s discussion is about communities within the community. That’s right. There is more...
2012-11-01
583 reads
I tend to take it for granted and I imagine most of you do as well, but not everyone is...
2012-11-01
813 reads
My friend and SQL Server professional Tim Radney (blog/@tradney) has written a new entry in the Joes2Pros series:
You can get...
2012-11-01
756 reads
Being a long-time SSIS 2008 developer, I have been working with SSIS 2012 for the past few months, and I...
2012-11-01
2,494 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-01 (first published: 2012-10-29)
3,303 reads
Using SSIS 2012 for Data Warehouse ETL
I have been fortunate to be selected this year to speak at the PASS...
2012-11-01
1,040 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