From PASS Summit to MVP Summit
This was a really great week!
So many sessions by great speakers, lots of community events, parties and fun. I met...
2015-10-30
953 reads
This was a really great week!
So many sessions by great speakers, lots of community events, parties and fun. I met...
2015-10-30
953 reads
I’m going to present my session about working with parameters in PASS Summit on Thursday at 03:15pm. The title of...
2015-10-29
850 reads
Yes, it’s this time of the year again, and I’m very excited about it. Once a year, PASS holds the...
2015-10-28
432 reads
I love running. I wake up at 5am three times a week, run for an hour, and by 6:30am I’m...
2015-09-16
588 reads
Today we celebrated the last session of one of our Become a SQL Server DBA classes. This course takes people...
2015-08-12
623 reads
It’s this time of the year again, when PASS announces the speakers in the biggest SQL Server event in the...
2015-06-29
1,007 reads
On May 18 I presented a session about Extended Events as part of the Global Hebrew PASS Virtual Chapter. I...
2015-05-19
486 reads
Visual Studio is a great tool for developers, and it offers so many great features, such as IntelliSense, unit testing...
2015-05-18 (first published: 2015-05-06)
6,223 reads
Two weeks ago I attended SQLBits in London. This is probably the biggest SQL Server conference in Europe, and this...
2015-03-25
611 reads
One of the most common tasks that DBAs are required to perform is monitoring. This is not just a task....
2015-03-10 (first published: 2015-02-26)
8,422 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...
This week my BI Developer colleague proudly showed me a new Power BI report...
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