Whitepaper Wednesday - Mirroring a Large Number of Databases in a Single SQL Server Instance
Hey folks,
With high availability being so “high” on everyone’s list mirroring is a hot topic. This article by Sanjay Mishra...
2010-09-06
204 reads
Hey folks,
With high availability being so “high” on everyone’s list mirroring is a hot topic. This article by Sanjay Mishra...
2010-09-06
204 reads
People have been screaming from rooftops for a month now about the PASS election process, ever since a beloved member...
2010-09-03
965 reads
When I arrived at the Hutton Hotel in Nashville for the PASS Board meeting recently they couldn’t find my reservation....
2010-09-03
527 reads
Another free tool for SQL Server that supports SQL Server 2008/2005/2000, comes from xSQL Software, the Script Executor Commnity Edition,...
2010-09-03
1,184 reads
No, it’s not a new device. This time it’s my son, Delaney, who has been reading on my old iPhone...
2010-09-03
358 reads
If you are interested in watching some high quality SQL Server content from the comfort and convenience of your own...
2010-09-03
740 reads
Tuesday
PASS Performance Virtual Chapter - Introduction to SQL Server Statistics - Andy Warren
Wednesday
Idera - Building a Data Mart with Integration Services - Stacia Misner
SQL...
2010-09-03
898 reads
For a long time I haven't been active member at SSC, so I'm coming back again, saying once again Hello...
2010-09-03
606 reads
Yesterday I attended an internal training course on social networking. The class was targeted toward the 100 level, but like...
2010-09-03
419 reads
Puzzle #7 had an interesting twist. You were required to add a column to the result set that dynamically displayed...
2010-09-03
595 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