Tricky Questions
This Friday Steve Jones is looking for help with interview questions. What questions have been hard in an interview or surprised you? Let us know and help others be prepared for their next interview.
This Friday Steve Jones is looking for help with interview questions. What questions have been hard in an interview or surprised you? Let us know and help others be prepared for their next interview.
Sometimes things that seem complicated are much easier then you think and this is the power of using T-SQL to take care of repetitive tasks. One of these tasks may be the need to backup all databases on your server.
Using change tracking in SQL Server 2008 to aid in database refactoring within an OLTP system.
Today we have a guest editorial from Andy Warren that looks at commuting to work.
With PowerShell in one hand, and WMI in the other, DBAs can do almost anything in their Window's environments, and Laerte Junior is using his powers for good. He built a highly precise, highly configurable alerting system for his servers, and now shows us exactly how he did it.
Data is important, but today Steve Jones notes that what we do with it is even more important.
As your business grows, the number of applications grows as well, as do the SQL Server instances to support these applications. As a SQL DBA, you need to have a multi-server management dashboard that proactively tells you about the resource utilization on each SQL Server instance.
Revenge is a dish best served cold, but body temperature's OK, too.
This article demonstrates how to manage the development of complex queries by building them in stages with temporary tables, table variables and common table expressions.
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
A while back I wrote a quick post on setting up key mappings in...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
Comments posted to this topic are about the item Creating JSON III
Comments posted to this topic are about the item Testing is Becoming More Important
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers