Learning Options in Seattle Next Month
The 2014 PASS Summit takes place next month. Actually a few weeks, on Nov 3-7, 2014 in Seattle. While many...
2014-10-16
797 reads
The 2014 PASS Summit takes place next month. Actually a few weeks, on Nov 3-7, 2014 in Seattle. While many...
2014-10-16
797 reads
Both groups met at a special joint meeting last night at Nova University, part of Operation Souza. Before I go...
2014-10-16
764 reads
I have a pre-con coming up at the PASS Summit. You can read about it here. I named it “Query...
2014-10-16
677 reads
Recently I had been requested by a client to look into one of their SSRS reports issues. They had one...
2014-10-16
3,160 reads
You know, these 1 hour sessions that are at most SQL Saturdays are just too short sometimes – you just get...
2014-10-16
572 reads
You might be wondering why I’m going into such a simple subject. Well the way I see it there are...
2014-10-16
2,752 reads
London, Oct 24, 2014
Seattle, Nov 3, 2014
Come join us.
Filed under: Blog Tagged: Humor, syndicated
2014-10-16
814 reads
Some time ago I was writing some windowing functions on a set of data. Basically I was looking for the...
2014-10-15 (first published: 2014-10-07)
6,628 reads
Excel 2013 - We can’t create a Timeline for this report because it doesn’t have a field formatted as Date.
After getting...
2014-10-15
3,360 reads
So, I've finally decided to draw a line in the sand. I've been doing some writing lately. The radio silence...
2014-10-15
1,838 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