Brand <> Reputation?
I was reading a book recently and it equated brand with reputation. My first thought was "aha", that brand is...
2009-04-21
1,019 reads
I was reading a book recently and it equated brand with reputation. My first thought was "aha", that brand is...
2009-04-21
1,019 reads
Karla just emailed that the schedule is set, details at http://www.sqlsaturday.com/schedule.aspx, but to save you time here are the speakers...
2009-04-21
622 reads
Tom has been doing a series of interviews on his blog lately and I ended up on the list. Interviewing...
2009-04-20
520 reads
I've written a few posts in the past about time management, and thought I'd post an update with some lessons...
2009-04-20
590 reads
Blogging is both more fun and harder than it looks, so when someone is getting started I try to offer...
2009-04-20
545 reads
I've written quite a few posts lately on networking and a very common question is - where's the results? What do...
2009-04-19
977 reads
If you've never looked at one of these they are compilations of some of the best/most popular articles since the...
2009-04-16
535 reads
A week or so ago I posted a note about reading How to Start a Conversation and Make Friends (worth...
2009-04-15
380 reads
I just had a call with John Baldwin who is leading the effort in Birmingham and there plenty of action...
2009-04-15
303 reads
I happen to notice this in a class recently that I had the rare student - one that could take notes...
2009-04-14
393 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