PASS Tuesday Key Note – Part 2
Bob Muglia opened with January 13, 1988, when the Microsoft Sybase Ashton-Tate SQL Server program was launched. Apparently Bill Gates...
2009-11-03
373 reads
Bob Muglia opened with January 13, 1988, when the Microsoft Sybase Ashton-Tate SQL Server program was launched. Apparently Bill Gates...
2009-11-03
373 reads
Now up is Ted Kummert of Microsoft.
He’s giving us a good overview of some of the technology coming up. He’s...
2009-11-03
548 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
810 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
604 reads
Day two of the summit found me in the keynote, an interesting but much too long (2 hours) for comfort. ...
2009-11-03
665 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
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
hi i was hoping for a more elegant way of setting a pkg level...
I have a plan which in sys.query_store_plan shows: Last_compile_start_time of 2026-04-23 00:13:00.7670000 +00:00 Last_execution_time...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams n;See possible answers