Impressions of PDC09 Day One
Back before I grew up and became a DBA, I used to be a developer. This seems to be a...
2009-11-18
485 reads
Back before I grew up and became a DBA, I used to be a developer. This seems to be a...
2009-11-18
485 reads
Microsoft has released Cumulative Update 5 for SQL Server 2008 Service Pack 1. You can go here to request the...
2009-11-17
532 reads
We have been using SQL Server 2008 Integrated Full Text Search (iFTS) in Production at NewsGator for a little over...
2009-11-17
954 reads
Kimberly Trippposted today about the SQL Server MVP Deep Dives book signing event at PASS on November 4. The PASS...
2009-11-17
648 reads
If you need to initialize a mirrored database for SQL Server 2008 Database Mirroring, one of the first things you...
2009-11-14
1,437 reads
I have been pretty busy with a server consolidation and move project at work. We had four Dell PowerEdge 6800...
2009-11-13
1,320 reads
One feature of Windows 7 that you may not have heard of is Windows XP Mode on Windows Virtual PC....
2009-11-12
1,400 reads
After quite a bit of research, I pulled the trigger on a new HP Envy 15 system last Saturday. This...
2009-11-12
1,954 reads
Here is an updated version of my diagnostic information queries for SQL Server 2005. You can get the SQL Server...
2009-11-09
2,291 reads
This is a temporary post that was not deleted. Please delete this manually. (e29f86d1-0b33-4a68-adcd-77248245d9b5 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2009-11-09
566 reads
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...
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
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