A Beautiful Google Mind
Larry Page is a very interesting person, one that is looking to change the world.
2016-06-21
128 reads
Larry Page is a very interesting person, one that is looking to change the world.
2016-06-21
128 reads
After the crash of an US Air Force database was reported, Steve Jones has some advice.
2016-06-20
120 reads
2016-06-20
82 reads
SQL Server 2016 runs faster, sometimes without you changing anything.
2016-06-17
271 reads
We might be smart in one area, but not others. That's worth remembering.
2025-12-22 (first published: 2016-06-16)
197 reads
The Stretch database feature in SQL Server 2016 is fantastic, but is it too expensive?
2016-06-15
215 reads
2016-06-14
90 reads
2016-06-13
73 reads
One of the things that will be debated quite a bit in the next few years will be the penalties for data loss.
2016-06-13
123 reads
2016-06-10
102 reads
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...
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:...
Comments posted to this topic are about the item Creating JSON III
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