Understanding a Database
The ways in which you might try and reverse engineer a database design are on Steve's mind today.
2025-03-10 (first published: 2018-11-30)
312 reads
The ways in which you might try and reverse engineer a database design are on Steve's mind today.
2025-03-10 (first published: 2018-11-30)
312 reads
2018-11-29
72 reads
When you know there's a problem, it's better to solve it early rather than late.
2018-11-28
53 reads
Finding training opportunities can be a challenge in many organizations.
2018-11-27
57 reads
Learning about new jobs is a good way to help decide if you want to change careers.
2018-11-26
73 reads
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
2018-11-26
70 reads
2018-11-22
40 reads
Just before the US holiday, Steve wants you to think about the security of our systems.
2018-11-21
51 reads
2018-11-20
57 reads
2018-11-19
77 reads
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...
A while back I wrote a quick post on setting up key mappings in...
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
Comments posted to this topic are about the item Testing is Becoming More Important
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