Customer Loyalty Cards, Convenience, and Privacy
I bet most of you have at least one customer loyalty card in your wallet or on your keyring, one...
2009-07-20
720 reads
I bet most of you have at least one customer loyalty card in your wallet or on your keyring, one...
2009-07-20
720 reads
I read a nice article by Steve M List called Think Before You Speak in MSDN Magazine and it talks...
2009-07-19
495 reads
I finished reading Fault Line by Barry Eisler ($16.50 @ Amazon) a few weeks ago. I’ve been a fan for a...
2009-07-17
595 reads
This edition of SQL School brings us a look at how to set single user mode for your SQL Server instance.
2009-07-16
4,201 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-15
425 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
Database Mail is an essential part of administering SQL Server for most people. MVP Andy Warren brings us part 2 of how to set up this subsystem.
2009-07-14
6,340 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
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
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
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...
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