Quickly View Session Information with Query Text
One of the most common problems facing a DBA or developer in troubleshooting performance is identifying what processes, and by...
2009-11-03
436 reads
One of the most common problems facing a DBA or developer in troubleshooting performance is identifying what processes, and by...
2009-11-03
436 reads
Hey, just caught wind of some timely stuff going on at PASS. Had my trusty 'Google alert' email me, set...
2009-11-03
812 reads
Ok, so I can’t promise you’ll be smooth by the end of this entry, but I can promise you’ll be...
2009-11-03
231 reads
It’s very exciting to be involved with the SQL Saturday here in South Florida. There are already so many great...
2009-11-03
337 reads
Day one for me began with a leisurely breakfast at Top Pot donuts with Jack Corbett, Andy Warren, and Don...
2009-11-03
606 reads
Day two of the summit found me in the keynote, an interesting but much too long (2 hours) for comfort. ...
2009-11-03
666 reads
I get a lot of requests for explanations about the different concepts and the easiest way to demo partitioning in...
2009-11-03
355 reads
I was working with a team of developers this week who were having the hardest time finding the keystroke to...
2009-11-03
325 reads
Each year I host an opening night party at the PASS Summit. I set up a deal years ago with...
2009-11-03
1,433 reads
We are all facing the challenges of this new economy. There are very few people and industries in the world...
2009-11-03
299 reads
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
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...
WhatsApp:0817629933 Jl. HOS Cokro Aminoto No.56-58, Muka, Kec. Cianjur, Kabupaten Cianjur, Jawa Barat 43215
Untuk aktivasi qlola IB token (soft Token) ke ponsel baru dengan menghubungi Qlola via...
Untuk aktivasi qlola IB token (soft Token) ke ponsel baru dengan menghubungi Qlola via...
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