The Test of Time
A change here at SQLServerCentral.com and Steve Jones gives some thoughts on the impact of this for the future.
2006-11-13
115 reads
A change here at SQLServerCentral.com and Steve Jones gives some thoughts on the impact of this for the future.
2006-11-13
115 reads
2006-11-13
964 reads
I usually set aside Tues afternoons and Friday afternoons for my Database Daily work. Scanning a couple hundred links takes...
2006-11-11
1,588 reads
Service Pack 2 for SQL Server 2005 has been released as a CTP. Steve Jones installed it and has a few thoughts on this pre-release product.
2006-11-10
3,605 reads
Most of us don't get to make hiring decisions, whether we're interviewing or helping to interview someone. However we often have input on new employees. Steve Jones brings us some thoughts on helping to make the hiring decision.
2006-11-02
6,325 reads
2006-11-01
1,259 reads
Steve Jones brings us a car update that talks about a new car that doesn't need gasoline to run.
2006-11-01
52 reads
The SQL Server memory manager is one of the more complicated parts of SQL Server and we had the chance recently to talk to the person that ensures it runs as smoothly as possible. Get to know the man behind the SQLOS.
2006-10-26
2,827 reads
2006-10-24
2,341 reads
2006-10-23
1,617 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