Thanksgiving Bloopers
I'm slow to get this out, but I finally rendered the raw bloopers from November. Enjoy.
Part 1
Part 2
Part 3
2010-12-15
1,104 reads
I'm slow to get this out, but I finally rendered the raw bloopers from November. Enjoy.
Part 1
Part 2
Part 3
2010-12-15
1,104 reads
Today Steve Jones reminds us that talent and technical skills are not necessarily enough to advance your career and that you ought to remember to work on other types of skills that you may want to improve.
2010-12-15
216 reads
It’s going to be a busy week for me. At last count, I had over 40 comments for my T-SQL...
2010-12-14
704 reads
Today Steve Jones talks about those products we consider "low-end." Products like Access or VB. Are they a problem for us?
2010-12-14
177 reads
I’m hosting this month’s T-SQL Tuesday blog party, but that doesn’t mean I can’t participate. I posted the invitation last...
2010-12-14
1,173 reads
A contest from Red Gate and Steve Jones could get you a copy of SQL Monitor and an iPad for Christmas. Steve Jones talks about how you can enter, and perhaps win an iPad for yourself this holiday season.
2010-12-13
1,772 reads
There's a contest going on, today through Friday, and you can win a copy of SQL Monitor from my employer...
2010-12-13
806 reads
Last year I submitted a Connect item for SQL Server 2005 SP4. Quite a few people supported this item and...
2010-12-13
1,438 reads
One piece of advice that is often given to new SQL Server administrators is not to shrink their databases. But they seem to do it often enough anyway. For this Friday's poll, Steve Jones asks if we should do away with shrink.
2010-12-10
984 reads
I hate not living up to commitments. It really, really bothers me and I have tried hard in my career...
2010-12-10
649 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
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...
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