Porting SQLServerCentral
Steve talks about the project underway to port the SQLServerCentral codebase.
2018-12-27
129 reads
Steve talks about the project underway to port the SQLServerCentral codebase.
2018-12-27
129 reads
One of the best ways to improve software is to evaluate it sooner, which includes static analysis. We don't have many tools for database code, but we need more.
2018-12-26
36 reads
2018-12-25
39 reads
2018-12-24
64 reads
2018-12-24
56 reads
2018-12-21
888 reads
With a data breach at Marriot, there is a call from one person for companies to spend more on security.
2018-12-20
33 reads
Many organizations that run older versions of SQL Server are not patched.
2018-12-19
59 reads
2018-12-18
56 reads
Steve Jones thinks it's important that we be able to deploy almost any changes to our databases without breaking applications.
2018-12-17 (first published: 2015-01-26)
186 reads
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