Drive
I saw a short talk from Dan Pink a few months back from this year’s TED conference. It’s very cool,...
2010-08-18
1,056 reads
I saw a short talk from Dan Pink a few months back from this year’s TED conference. It’s very cool,...
2010-08-18
1,056 reads
I read Stuart
Ainsworth’s blog post this morning, and I thank Stuart for posting
something. However, there’s an implication in...
2010-08-18
1,720 reads
Well I have to say I’m surprised. It’s always hard to get a rejection, and I’m not quite sure what...
2010-08-18
3,244 reads
Terry Childs gets sentenced for refusing to turn over passwords to his boss. Steve Jones reminds us that we work for someone and that we have to remember that when taking a stand.
2010-08-18
299 reads
A presentation by Steve Jones that talks about the technical basics of what SQL Server is and how it works with some hints about backups, security, and more.
2010-08-17
289 reads
How can you better keep employees engaged in your company? Keep them happy and hopefully retain them for a long time? Steve Jones has some comments today.
2010-08-17
164 reads
With cloud computing use growing, and SQL Server Azure becoming more popular, Steve Jones wishes this would become a product that the rest of us could deploy.
2010-08-16
165 reads
According to the timeline (PDF), the PASS Nominating Committee is supposed to contact the applicants today or tomorrow and let...
2010-08-16
747 reads
Text of my keynote from SQL Saturday #28
Welcome to SQL Saturday #28 and I'm pleased to be back in Baton...
2010-08-16
2,098 reads
I started traveling with two laptops after I had a laptop fail during a trip in 2009 the day of...
2010-08-14
751 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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