OT: Rewriting History
I’ve been blogging for a few months. During that time I’ve received comments about my grammar, sentence construction and paragraph...
2009-10-11
637 reads
I’ve been blogging for a few months. During that time I’ve received comments about my grammar, sentence construction and paragraph...
2009-10-11
637 reads
I’ve toyed with the CLR in SQL Sever 2005 off and on since the first Yukon beta had it enabled....
2009-10-09
2,840 reads
I’ve been reading through this book and it really does have something for everyone at any level.
I think it...
2009-09-29
1,460 reads
Your servers are only as fast as the slowest part, hard drives.
To feed other parts of the system we have...
2009-09-28
2,687 reads
Your servers are only as fast as the slowest part, hard drives.To feed other parts of the system we have...
2009-09-17
3,332 reads
At least once a year I give a large talk on disk subsystems, IO and SQL Server. It’s a ground...
2009-09-14
1,779 reads
Hello all!
We will be having our normal meeting at the Microsoft technology center sponsored by:
http://www.cactuss.org/Supporters/tabid/59/Default.aspx
Microsoft http://www.cactuss.org/MeetingInformation/tabid/63/Default.aspx
Stonebridge Plaza, Building One...
2009-09-12
1,024 reads
I’ve known Joe for a number of years and have a lot of respect for his experience and knowledge around...
2009-09-11
857 reads
SQL Pretty Printer for SQL Server Management Studio $39.95 single user $99.95 site license
having coding standards is a must for...
2009-09-05
1,888 reads
If you are in Austin you should stop by!
If you want to know what is going on SQL Server wise...
2009-08-18
824 reads
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
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...
Ruko Soho Emas, Jl. Klampis Jaya No.39, Klampis Ngasem, Sukolilo, Surabaya, Jawa Timur 60117
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