The Costs of Multiple Platforms
Lots of organizations use multiple database platforms. Steve notes there is a cost to choosing to allow this.
2026-09-09
2 reads
Lots of organizations use multiple database platforms. Steve notes there is a cost to choosing to allow this.
2026-09-09
2 reads
It's the first week of September, but Steve sees it as the end of summer. It's a time to catch up on things.
2026-09-04
47 reads
Today Steve wonders if the data professionals out there measure themselves on the job.
2026-09-02
94 reads
Today Steve has a few comments on backups and your ability to get to a restore in the event of an issue with your provider.
2026-08-31
185 reads
2026-08-28
119 reads
Steve thinks administrator rights for too many people is a bad idea, but even when it's a limited group, he recommends some sort of governance.
2026-08-26
224 reads
AI is changing the world, but it's changing us as well, challenging the things we have been confident in and depended on in our career.
2026-08-24
132 reads
2026-08-22
105 reads
Steve uncovers a scam that relies on data not being consistent between two systems.
2026-08-21
125 reads
Are there things you should never change or configure? Steve notes that is probably not the best policy.
2026-08-19
91 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
Comments posted to this topic are about the item Databricks Genie Spaces for SQL...
Comments posted to this topic are about the item The Costs of Multiple Platforms
Comments posted to this topic are about the item RegEx Functions II
I have this data in a table in a SQL Server 2025 database:
EmailAddressID EmailAddress 7 dylan0@ADVENTURE-WORKS.COM 8 Diane1@ADVENTURE-WORKS.COMIf I run this query, which row(s) are returned?
SELECT top 10 * FROM person.EmailAddress WHERE REGEXP_LIKE(EmailAddress, '^d') AND BusinessEntityID IN (7,8)See possible answers