Looking for Good (and Bad) SQL Server Blogs
I was asked to do an hour presentation during the 24 Hours of PASS, which takes place on Sept 2,...
I was asked to do an hour presentation during the 24 Hours of PASS, which takes place on Sept 2,...
Because Microsoft SQL Server Analysis Services query and processing performance tuning is a fairly broad subject, this white paper organizes performance tuning techniques into the following three segments.
Is software engineering dead? Some well respected software developers have stated that, and one says we should be craftsman, not engineers.
What happens behind the scenes when you alter a table schema? New author Alok Dwivedi dives deep into SQL Server to show us how things are affected.
Does too much uptime mean that you might be at risk for downtime? Steve Jones examines this idea in today's editorial.
Rolling out SQL Servers is a key task for DBAs, this articles provides 12 essential post-installation steps.
Is software engineering dead? Some well respected software developers have stated that, and one says we should be craftsman, not engineers.
Is software engineering dead? Some well respected software developers have stated that, and one says we should be craftsman, not engineers.
Is software engineering dead? Some well respected software developers have stated that, and one says we should be craftsman, not engineers.
I was doing some maintenance on the SQLSaturday web site recently and one request kinda low on the list was...
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...
Yes, luxury packages in Andaman are highly popular among honeymooners due to their romantic...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...
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;See possible answers