Netbook – Finding a GB
I turned on my netbook for the first time in a few weeks recently. My laptop had died, and I...
2009-12-16
729 reads
I turned on my netbook for the first time in a few weeks recently. My laptop had died, and I...
2009-12-16
729 reads
Its quite some time that I blog… but good news is I have some good stuff to blog on… so...
2009-12-16
12,463 reads
I was checking on the status of my laptop the other day. It died and I shipped it back to...
2009-12-16
960 reads
It seems that the SQL community is really growing. There are now quite a few events that you can attend...
2009-12-16
989 reads
SQLSaturday #37 will be held March 13, 2010 at Mandeville Hall, St. Joseph's University, 5600 City Line Ave, Philadelphia, PA....
2009-12-16
557 reads
Here is the mid-December version of my diagnostic queries for SQL Server 2008. The idea here is to be able...
2009-12-16
980 reads
Each year I attend an annual Christmas party that’s essentially a JD Edwards Operations department party. JD Edwards hasn’t existed...
2009-12-15
713 reads
Database Design. Sounds simple, and at the same time, demanding. I mean, what's to design. You just need a few...
2009-12-15
357 reads
Endgadget has a post up about an upcoming 32nm Westmere family CPU called the Core i7-980X, which will have six...
2009-12-15
757 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-12-15
582 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...
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