SQL Server, Persistent Memory on NVDIMMs and DAX
Paradigm Shift!
What do I mean by that? Every once in a while a technology comes along and changes the way...
2016-08-18
2,184 reads
Paradigm Shift!
What do I mean by that? Every once in a while a technology comes along and changes the way...
2016-08-18
2,184 reads
My new course “LFCE: Advanced Linux Networking” in now available on Pluralsight here!
This course targets IT professionals that design and maintain RHEL based enterprises. It aligns with the Linux Foundation Certified System...
2016-08-16
3 reads
My new course “LFCE: Advanced Linux Networking” in now available on Pluralsight here!
This course targets IT professionals that design and maintain RHEL based...
2016-08-16
578 reads
I’m proud to announce that I will be speaking at IT/Dev Connections on October 11th 2016 in Las Vegas! I can’t begin to tell you how excited I am...
2016-07-31
5 reads
I’m proud to announce that I will be speaking at IT/Dev Connections on October 11th 2016 in Las Vegas! I...
2016-07-31
645 reads
I’m proud to announce that I will be speaking at SQL Saturday Baton Rouge on August 6th 2016! This will be my forth SQLSaturday event this year and I’m really excited...
2016-07-25
1 reads
I’m proud to announce that I will be speaking at SQL Saturday Baton Rouge on August 6th 2016! This will be my...
2016-07-25
436 reads
I’m proud to announce that I will be speaking at SQL Saturday Sacramento on July 23th 2016! This will be my third SQLSaturday event this year and I’m really excited...
2016-07-15
4 reads
I’m proud to announce that I will be speaking at SQL Saturday Sacramento on July 23th 2016! This will be my...
2016-07-15
429 reads
The developments over the last few months in the data community had brought us to an interesting place. We’re going to have SQL on Linux and now we also...
2016-07-01
4 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