Three Days to the first Nevada SQL Saturday
It’s three days to the first SQL Saturday in Nevada, taking place this Saturday in Las Vegas. I’m looking forward...
2014-04-02
655 reads
It’s three days to the first SQL Saturday in Nevada, taking place this Saturday in Las Vegas. I’m looking forward...
2014-04-02
655 reads
Today VMware released the list of 754 people who are the proud recipients of the coveted vExpert award for 2014....
2014-04-02
491 reads
Many of us are planning to move to SQL Server 2012 in the coming year, and one of the feature...
2014-04-01
326 reads
The last weeks were very time consuming for me, because I had to make a very tough decision: staying independent...
2014-04-01
897 reads
The driver behind the move
After over two and a half years at my current employers I am afraid to say...
2014-04-01
613 reads
When I first heard this, it struck me as being a remarkably concise wisdom applicable to virtually any programming task....
2014-04-01
1,188 reads
Microsoft has announced that SQL 2014 was in fact an elaborate April Fool’s joke and that Microsoft intends to move...
2014-04-01
859 reads
Microsoft has announced that SQL 2014 was in fact an elaborate April Fool’s joke and that Microsoft intends to move...
2014-04-01
410 reads
As has been well publicized, today is the official Release To Manufacturing date for SQL Server 2014. You can read more about all of that here. Something that hasn’t...
2014-04-01
3 reads
As has been well publicized, today is the official Release To Manufacturing date for SQL Server 2014. You can read...
2014-04-01
928 reads
By Vinay Thakur
Quick Summary for Microsoft SQL Server till 2025, I am fortunate to be part...
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...
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