The Benefits of a Flexible Schedule
Both my wife and I work from home, and we've done it for years. I've been working full time for...
2009-08-14
982 reads
Both my wife and I work from home, and we've done it for years. I've been working full time for...
2009-08-14
982 reads
If you're not familiar with the reference, it comes from the movie Madagascar and the subsequent sequel and TV series...
2009-08-13
13,804 reads
In a previous blog post, I began writing about how one might start a career as a database professional, and...
2009-08-13
617 reads
One of the reasons that I think the PASS Summit fits well in Seattle is the support that they get...
2009-08-13
920 reads
Well, actually, these are the guidelines for submitting anything to SQLPASS, but it includes the guidelines for SQL Server Standard....
2009-08-13
1,171 reads
I guess I did a good job, with all 3s and 4s in my eval (meaning good and great) for...
2009-08-13
787 reads
Well I spent most of this past Saturday upgrading my Laptop to Windows 7 Ultimate, which I have to say...
2009-08-13
751 reads
Greetings, ALL:
As more and more companies get on board and begin to adapt SQL Server 2008, what is the best...
2009-08-13
678 reads
One of my clients called saying they were receiving the following error when trying to access a database: "Error 952...
2009-08-12
7,040 reads
I've advocated simple design for years, trying to give users less choice, help lead them down paths to get their...
2009-08-12
549 reads
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers