Writing More This Month
I haven’t written much in a while, having had to put more time into both personal and professional obligations over...
2016-11-07
364 reads
I haven’t written much in a while, having had to put more time into both personal and professional obligations over...
2016-11-07
364 reads
This year we’re trying out two ideas on Thursday night, a networking dinner (of a sort) and game night. I...
2016-10-27 (first published: 2016-10-20)
654 reads
If you’re at the PASS Summit and would like to meet some new people, come see us from 5:30 to...
2016-10-27
749 reads
Read this and wanted to share as we head to the PASS Summit next week: This is how we do it:...
2016-10-21
424 reads
Events like the PASS Summit aren’t just about education. They are a chance to meet new people, get some distance from...
2016-10-20
435 reads
Part of making a week long trip to a big event like the PASS Summit successful is finding something to...
2016-10-20
435 reads
Typically I want to get 3 years out of a laptop to amortize spending on a premium grade machine. I’m...
2016-10-12
431 reads
Many of have applications that log errors to a table. Ever thought about what happens when an application starts to throw a lot of errors? This article looks at the problem and some of the responses you might consider having ready in case it happens to you!
2016-10-11
1,807 reads
A Visit to Microsoft was posted back in August and I just re-read it. Here’s a quote that might interest you:
As...
2016-10-10
387 reads
I think the topic of whether log data belongs in a table or a file would be a great one for...
2016-10-10
391 reads
By Vinay Thakur
Quick Summary for Microsoft SQL Server till 2025, I am fortunate to be part...
By James Serra
Why this comparison feels confusing If you’re a Power BI report author who’s just...
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
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