Audit Database File Size Changes
Recently I shared an article on how to track the growths and shrinks that occur within database files. I shared...
2014-11-26
2,578 reads
Recently I shared an article on how to track the growths and shrinks that occur within database files. I shared...
2014-11-26
2,578 reads
This post is part of a series on this blog that will help me, and hopefully you, pass exam 70-463: Implementing...
2014-11-26 (first published: 2014-11-20)
7,023 reads
It’s an odd query, yes, but in preparation to write this post I actually typed the above phrase into my...
2014-11-26
1,253 reads
My SQL Saturday Parma slide decks are available to download on SlideShare.
The main topic of those presentations is database lifecycle management (DLM)...
2014-11-26
14 reads
This post has nothing, absolutely nothing, to do with SQL Server. It does, however, relate to your career as a...
2014-11-26 (first published: 2014-11-17)
6,233 reads
The Azure Data Factory is a service designed to allow developers to integrate disparate data sources. It is a platform...
2014-11-26
2,067 reads
Hello Dear Reader! I’ve been the Data Platform Management Lead at Pragmatic Works for almost two years now. It’s been...
2014-11-26
1,252 reads
Kenneth Fisher:
I really enjoyed writing this post last year and honestly still enjoy reading it myself. And since tomorrow is...
2014-11-26
1,056 reads
Well, the PASS Summit has come and gone and it was *awesome*. What a difference from my first Summit experience,...
2014-11-25 (first published: 2014-11-17)
8,734 reads
“How did you like your convention?”
“How was your trip?”
“What did you learn?”
“Where did you go for a week?”
“Who did you...
2014-11-25
1,542 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