SQL Server Central Guest Editorial
My second guest editorial is up at SQL Server Central. These are fun to do (especially the video) even though they’re...
2009-10-14
555 reads
My second guest editorial is up at SQL Server Central. These are fun to do (especially the video) even though they’re...
2009-10-14
555 reads
Some people just love to talk. I guess I’m one of those people. I admit it. But there is a...
2009-10-14
426 reads
The Future of Monitoring website, hosted by the Software Development Usability Team at Red Gate Software, is sponsoring a “Design...
2009-10-14
325 reads
As I work on moving a large system with multiple database servers from a 27TB SAN to a single database...
2009-10-14
800 reads
Hi,
Yesterday while talking to my friend, he reviewed my blog and suggested that I was having so many spelling...
2009-10-13
431 reads
If you’re involved with maintaining Microsoft Operations Manager, you probably have a few things you’d like to tell the developers,...
2009-10-13
517 reads
One of the things on my todo list for this past week was to upgrade a SQL 2005 Standard Instance...
2009-10-13
735 reads
Someone was asking about using multiple data files recently to try and increase performance. I had answered that unless you...
2009-10-13
3,998 reads
I wrote an article for SQLServerCentral entitled "Database Space Capacity Planning" that demonstrates a database and volume (disk) capacity planning solution...
2009-10-13
1,000 reads
I keep seeing these concepts that have long been disproven, posted again and again on newsgroups as if they were valid information. The...
2009-10-13
671 reads
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
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