TSQL Tuesday - What SQL Community Means To Me
Today is Tuesday, and its time for another edition of TSQL Tuesday #36, as we continue the eternal blog party...
2012-11-13
1,502 reads
Today is Tuesday, and its time for another edition of TSQL Tuesday #36, as we continue the eternal blog party...
2012-11-13
1,502 reads
Chris Yates (@YatesSQL / blog) is hosting the T-SQL Tuesday blogging party this month, and he wants to know “What does...
2012-11-13
732 reads
T-SQL Tuesday #36 – SQL Community
T-SQL Tuesday #36 - SQL Community
This blog entry is participating in T-SQL Tuesday #36, hosted this month...
2012-11-13
964 reads
Community – What is it? Community is something that is improperly defined with words alone. Community is best defined through first person experience. Community is a feeling and a...
2012-11-13
8 reads
Community – What is it?
Community is something that is improperly defined with words alone. Community is best defined through first person...
2012-11-13
864 reads
Today is T-SQL Tuesday #36, hosted by Chris Yates (B | T). The topic this month is ‘What Does the SQL...
2012-11-13
793 reads
I will start off by saying, whenever I see the names Marco Russo, Alberto Ferrari and Chris Webb on a...
2012-11-12
1,887 reads
I will be presenting the session “Data Warehouse Architecture” to the South Florida PASS chapter on Wednesday, Nov 14th, at...
2012-11-12
1,030 reads
If you ever need to perform a DR install of SQL to a new path and then restore the system...
2012-11-12
657 reads
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out through out...
2012-11-12
640 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