Tampabay SQL Server User Group Presentation
I presented a one-hour session for Tampabay SQL Server User Group on Powershell and SQL Server. I've previously delivered this session for the...
2009-08-19
828 reads
I presented a one-hour session for Tampabay SQL Server User Group on Powershell and SQL Server. I've previously delivered this session for the...
2009-08-19
828 reads
I added a new blogger to my list. I was surfing around for a few good examples to use in...
2009-08-19
731 reads
I/O I/O - It's why my server's slow.....
Often I've been curious about ways to measure the performance of SQL Server, and...
2009-08-18
4,628 reads
In the Spring of 2008 Idera launched its SQL admin toolset at a super low deal of around two hundred...
2009-08-18
1,804 reads
In my Modern Resume presentation I have a few slides on blogging, a couple of which are hints and tips...
2009-08-18
1,183 reads
I’ve had this link about four kinds of free (and this link too) on my list for awhile, today seems...
2009-08-18
658 reads
I meant to write this earlier, like in July, but I suppose it's better late than never. I'm halfway through...
2009-08-18
1,313 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
Jack Corbett sent me an email this morning about the Swiss SQLSaturday, very cool! They did a great job on...
2009-08-18
745 reads
I’ve touched on it some in the past, but it’s a question that comes up a lot when we discuss...
2009-08-17
1,253 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...
Cara Mengatasi saldo tertahan di Bank Woori Saudara (BWS) dapat dilakukan dengan menghubungi BWS...
Telepon 08388331786.Jl. Sandubaya No.70-72, Sweta, Bertais, Kec. Sandubaya, Kota Mataram, Nusa Tenggara Bar. 83236
Call 08388331786.9G39+JVQ, Pancor, Kec. Selong, Kabupaten Lombok Timur, Nusa Tenggara Bar. 83611
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