Feedback and Change
Today Steve asks you to be a part of the change you'd like to see in our professional organization.
Today Steve asks you to be a part of the change you'd like to see in our professional organization.
Learn how the INCLUDE phrase of an index can change the performance of a query.
This article demonstrates how to use a 'state' approach to database source control, when the nature of the database changes cause you to hit difficulties with migrating existing data. These difficulties happen when the differences are such that it is impossible for any automated script to make the changes whilst preserving existing data.
In this Simple Talk editorial Kendra Little discusses how SSMS is as relevant as ever.
Managing a complex workload is a skill many of us need to acquire and maintain. Today Steve has a few ideas on how to do that.
In this eighth step of the SSAS Tabular Stairway start to expand the model beyond one fact table.
Learn how to quickly deploy a new SQL Server instance on Azure using Azure Container Instances ACI.
The latest version of SQL Compare now offers a Command Line Interface on Linux for the first time. Now teams can benefit from the industry standard tool for comparing and deploying SQL Server databases, whether they choose to work on Windows, Linux, or both.
An investigation of a serious performance issue during online re-indexing on a production server leads us to
interesting discoveries and solutions.
Azure SQL Database can be patched without stopping the sqlsrvr.exe process. Quite a feat of engineering.
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
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...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
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