Indentifying Performance Bottlenecks presentation
Thanks to everyone who attended the State of Tennessee’s .NET User Group meeting yesterday. I really enjoyed spending time with...
2009-11-13
830 reads
Thanks to everyone who attended the State of Tennessee’s .NET User Group meeting yesterday. I really enjoyed spending time with...
2009-11-13
830 reads
Since this was my time visiting Seattle I opted to stay an extra day and take in the sights and...
2009-11-13
592 reads
I realize that we all should know when the support of Microsoft sql server will expire. we should have this...
2009-11-13
692 reads
There were tons of people taking pictures and video during the PASS Summit. I found a number of pictures on...
2009-11-13
1,369 reads
Although it’s buried on the SQLPASS website, the newest edition of the SQL Server Standard is now available here in...
2009-11-13
539 reads
If you’re in the Ft. Worth area next Wednesday, November 18, please join me at the Ft. Worth SQL Server...
2009-11-13
551 reads
So now that we’re 7 days removed from the end of the SQL PASS summit, I’ve finally managed to arrange...
2009-11-13
834 reads
I have been pretty busy with a server consolidation and move project at work. We had four Dell PowerEdge 6800...
2009-11-13
1,320 reads
Everyone likes to get a project done, but many times in our rush to deploy we bypass some of the...
2009-11-13
1,786 reads
Every so often I see a post in a forum or on Twitter about the use of xp_cmdshell. Usually it is someone looking for...
2009-11-13
21,109 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