The Habits of Better Teams
Building a strong team is hard, and it takes work. A few thoughts today from Steve on how you can do this.
2020-09-23
121 reads
Building a strong team is hard, and it takes work. A few thoughts today from Steve on how you can do this.
2020-09-23
121 reads
Steve talks a bit about the new challenges of working in a different environment and the challenges you might face.
2020-09-22
101 reads
The database compatibility level ought to provide some protection from database upgrade changes, but do you believe that?
2020-09-21
330 reads
It is not existing knowledge but the skill of acquiring new knowledge rapidly that will help you overcome imposter syndrome.
2020-09-19
333 reads
Today we have a guest editorial from Andy Warren as Steve is on vacation. Would any job be enough for you to uproot your life?
2020-09-18 (first published: 2016-04-04)
253 reads
Today we have a guest editorial where Grant talks about being effective and practical in your world.
2020-09-17
167 reads
Today Steve gives a reason why your organization might consider improving its data governance.
2020-09-16
75 reads
2020-09-15
193 reads
2020-09-14
161 reads
This month's T-SQL Tuesday had lots of posts that look at automation from the DBA perspective, rather than the software developer.
2020-09-12
341 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