Database Cattle
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
344 reads
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
344 reads
Today Steve Jones talks about the checklist you would want if you needed to move a SQL Server instance to new hardware.
2017-03-08
12,324 reads
2017-03-07
86 reads
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
2017-03-06
88 reads
If a successful IT career is just as much about tenacity, interest and retention as it is about brainpower, then how does one go about continuous learning?
2017-03-06
97 reads
Today Steve Jones asks what default values you might choose for new columns in a table.
2017-03-03
124 reads
Read why Solomon Rutzky is excited about SQL Server running on Linux.
2017-03-02
562 reads
How do you detect issues in your systems? Testing? Monitoring? Steve Jones has a few thoughts that we should find ways to do so before our customers.
2026-02-19 (first published: 2017-03-01)
171 reads
2017-02-28
226 reads
Machine learning and AI are becoming more and more prevalent, which Steve Jones thinks is good.
2017-02-27
113 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