PASS Summit Page & Row Compression Deep Dive
Hello Dear Reader! Today is the Big day for me here at the PASS Summit 2012. I'll be presenting the...
2012-11-09
912 reads
Hello Dear Reader! Today is the Big day for me here at the PASS Summit 2012. I'll be presenting the...
2012-11-09
912 reads
Welcome to this Friday’s reblog summary post. The aim of these posts is to bring some old posts that newer...
2012-11-09
512 reads
We'll discuss surface area later in the week. Today let's talk about if you're able to connect to SQL Server....
2012-11-09 (first published: 2012-11-06)
3,426 reads
WOW! I’m absolutely honored to announce that I am speaking with theKevin Kline tomorrow at the SQL PASS Summit 2012....
2012-11-09
684 reads
SP1 for the RTM of SQL Server 2012 has been announced during PASS Summit 2012. It can be downloaded here:...
2012-11-09
740 reads
I’m attempting to push this thing. I want it to be a production device, not just a consumption device. Frankly,...
2012-11-09
865 reads
The following is my highlights and thoughts about the day two keynote at the SQL PASS Member Summit.
Douglas McDowell started...
2012-11-08
689 reads
A new book that I wrote a couple of chapters for has just been released. It is Professional SQL Server...
2012-11-08
933 reads
I’ve been involved in a project to set up a full test environment of dozens of SQL Servers. The requirements...
2012-11-08 (first published: 2012-11-05)
4,257 reads
When working with new technology, if you are like me you might like to setup virtual machines to learn the...
2012-11-08
1,361 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