Operation Hands Free
Recently I was driving home and as I made that turn into the sub-division where I live, over the course...
2008-07-30
1,355 reads
Recently I was driving home and as I made that turn into the sub-division where I live, over the course...
2008-07-30
1,355 reads
As a follow-up to yesterday's post, Part III of the SQL Server panel interview has been posted on-line. A name I...
2008-07-30
1,721 reads
Quite the debate going on from today's editorial: Stored Procedures Reconsidered. I chimed in late, and going on the "pro-sprocs"...
2008-07-30
1,548 reads
Rebuilding Stats was published yesterday on SSC, some nice comments posted to it as well. The main point of the...
2008-07-29
1,471 reads
I was asked by Odin Jobs to participate in an email interview on SQL Server. Joining me on the panel...
2008-07-29
2,010 reads
Not all of us work at companies big enough to justify the expense/time it takes to implement something like MS...
2008-07-29
1,440 reads
I saw this post from Rick Strahl about IP6 Addresses in Vista breaking some code, and it immediately made sense...
2008-07-28
1,442 reads
I just leaned today that Glenn Berry has had his MVP award renewedfor another year. If you have not read...
2008-07-27
1,324 reads
It's downright common these days to download programs as ISO images, but XP doesn't have a native viewer for them....
2008-07-27
1,697 reads
At least this project is moving forward. We deployed a new design to the site this week, and turned it...
2008-07-26
1,434 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...
Untuk menutup kartu kredit Bank UOB, Anda dapat menghubungi UOBCall melalui WhatsApp (6288220114008): atau...
Untuk menonaktifkan dan menutup kartu kredit Bank UOB, Anda dapat menghubungi UOBCall melalui WhatsApp...
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