New Free eBook: Defensive Database Programming with SQL Server
Simple-Talk Publishing has released a new, free 291 page eBook called Defensive Database Programming with SQL Server, by Alex Kuznetsov....
2010-05-10
1,803 reads
Simple-Talk Publishing has released a new, free 291 page eBook called Defensive Database Programming with SQL Server, by Alex Kuznetsov....
2010-05-10
1,803 reads
Started Friday by picking up the shirts for the event in Orlando, then heading to Jacksonville with the family, getting...
2010-05-10
439 reads
OPASS had it’s May meeting on Thursday the 6th sponsored by Confio with Dean Richards presenting Tuna Helper for the...
2010-05-10
489 reads
Everyone is invited to a webcast hosted by the PASS Business Intelligence virtual chapter this Friday, May 14th, as we...
2010-05-10
691 reads
This is just a quick post to let everyone know that this week marks the return of the PASS Professional...
2010-05-10
469 reads
Now that we’ve moved SQLSaturday to PASS and we’re seeing some really nice growth in the number of events, I...
2010-05-10
497 reads
If you’re anything like me, you value every second of your day and you constantly try to find new ways...
2010-05-10
461 reads
This coming Thursday is the SCSUG meeting. This is no normal meeting. Instead of the standard format of pizza/socialization followed...
2010-05-10
904 reads
http://www.sqlservercentral.com/blogs/sqldbauk/archive/2010/04/29/when-was-sql-server-last-restarted_3F00_.aspx
A very good tip from the SQL DBA in the UK!
2010-05-10
518 reads
Sparklines are new to Microsoft Excel 2010 and Reporting Services 2008 R2. In this post I will outline the steps...
2010-05-09
2,534 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