How Good is Good Enough?
I was running some tests on some purchased data this morning, and was getting a little perturbed because I was...
2011-06-16
606 reads
I was running some tests on some purchased data this morning, and was getting a little perturbed because I was...
2011-06-16
606 reads
Yesterday we got confirmation from SQLPASS if our submitted sessions for the upcoming SQLPASSS
summit in Seattle (October 11 – 14) were...
2011-06-16
708 reads
It appears I was fortunate enough to be selected to speak at the 2011 PASS Summit. This is shaping up...
2011-06-16
519 reads
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
689 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
752 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
651 reads
I took a vacation recently (well, a really long weekend) and as I like to do, visited a few book...
2011-06-16
674 reads
All ColoradoSQL user group meetings start at 5:30 and provide food and refreshments. There is no cost to attend so...
2011-06-15
905 reads
Update:
After all of this SMO stuff failed (changing the permission set to unsafe got around the security exception, but instead...
2011-06-15
1,484 reads
Microsoft has just released a new SSIS transform, called the SSIS Balanced Data Distributor (BDD). You can download it here.
This...
2011-06-15
1,356 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