Single Source of Truth
Andy Warren talks about the single source of truth for information. It could be the database, but that's not always the best choice.
2018-10-09
249 reads
Andy Warren talks about the single source of truth for information. It could be the database, but that's not always the best choice.
2018-10-09
249 reads
Steve has a troubleshooting experience that reminds him of a lesson he should have learned.
2018-10-08
76 reads
Performance is a common reason to monitor SQL Server. The work day of a database administrator is often interrupted with unexpected calls about slowness in applications or reports. But, how does the performance today compare to the performance last week or last month? Can the root cause of the issue be traced to the database […]
2018-10-08
44 reads
The idea of a single place to get the status of your environment is an interesting one.
2018-10-05
88 reads
2018-10-04
59 reads
2018-10-03
43 reads
Is an index change equivalent to a code change? Steve Jones asks the question and has a few thoughts.
2018-10-02
175 reads
With the need to remove older data, Steve thinks natural keys may be obsolete.
2018-10-01
219 reads
With lots of news coming out of Ignite, Steve talks about a few of the changes.
2018-10-01
49 reads
Do we need the right tool or just a tool? A guest editorial from Andy Warren gives a few thoughts on getting things done effectively.
2018-09-28
61 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