What is a data warehouse and why do I need one?
While the data warehouse isn’t a new concept, many are left wondering – what is a data warehouse? And why do I need one? I’m sad to tell you...
2014-11-03
12 reads
While the data warehouse isn’t a new concept, many are left wondering – what is a data warehouse? And why do I need one? I’m sad to tell you...
2014-11-03
12 reads
DateEventNovember 1 SQLSaturday #339 – Shanghai 2014November 1 SQLSaturday #337 – Oregon 2014November 22 SQLSaturday #355 – Parma, Italy 2014November 22 SQLSaturday #353...
2014-10-15
555 reads
DateEventOctober 4 SQLSaturday #335 – Athens 2014October 4 SQLSaturday #336 – Holland 2014October 4 SQLSaturday #344 – Tirana 2014October 4 SQLSaturday #315 – Pittsburgh...
2014-09-15
585 reads
PASS Virtual Chapter Events: September 2014
Join SQL Server professionals from around the world for free online technical training and networking...
2014-09-11
632 reads
DateEventSeptember 6 SQLSaturday #301 – Cape Town 2014September 6 SQLSaturday #320 – Raleigh 2014September 13 SQLSaturday #323 – Paris 2014September 13 SQLSaturday #300...
2014-08-15
713 reads
DateTimeTitle LinkAugust 15th 12:00 EST Manage Your Shop with CMS and Policy Based Management https://attendee.gotowebinar.com/register/4279519516082609665August 19th 11:00 CST The Roadmap...
2014-08-15
590 reads
DateEventAugust 2 SQLSaturday #324 – Baton Rouge 2014August 9 SQLSaturday #304 – Indianapolis 2014August 23 SQLSaturday #328 – Birmingham 2014August 23 SQLSaturday #309...
2014-07-15
647 reads
Technical conferences have always been a great venue for networking and increasing my knowledge base. Mile High Tech Con will...
2014-07-09
773 reads
DateEventJuly 12 SQLSaturday #312 – Sacramento 2014July 26 SQLSaturday #302 – Albany 2014July 26 SQLSaturday #322 – Guatemala 2014The post PASS SQLSaturday Events:...
2014-06-15
685 reads
All ColoradoSQL user group meetings start at 5:30 p.m. and provide food and refreshments. There is no cost to attend...
2014-06-10
477 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