Upgrade Your Laptop to Solid State Drive
Saw an announcement in Eweek about this, so went looking and found this review of the Imation SSD Upgrade Kit....
2009-07-15
566 reads
Saw an announcement in Eweek about this, so went looking and found this review of the Imation SSD Upgrade Kit....
2009-07-15
566 reads
2009-07-15
647 reads
After reading several pages of comments on this posting, I'm taking a stab at helping Canadian Unity on my beloved...
2009-07-14
3,713 reads
I ran across this post about time to move beyond 960 where it talks about most websites today are designed...
2009-07-14
371 reads
Chad Miller will be doing a presentation on Powershell and we’ll have our usually round table discussion afterward – often the...
2009-07-14
466 reads
Chris Shaw posts SQL quiz #4, I make an observation on Twitter about who gets tagged, Brent Ozar tags me...
2009-07-14
710 reads
Cross posted from the SQLSaturday blog
Though few see it, we also maintain a full set of admin tools for the...
2009-07-14
538 reads
Potentially it can overwhelm the bus, at least that's what this ZDNet review of the Fusion IO SSD drives says....
2009-07-14
1,748 reads
I read a post on Brent Ozar’s blog last week that discussed employers’ expectations when hiring new team members. Though...
2009-07-13
605 reads
This is part 3 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the series...
2009-07-13
3,986 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