Blog Likes and Dislikes
Today I'll see how many bloggers I can interest/irritate by discussing a quick list of what I think works and doesn't...
2008-11-06
453 reads
Today I'll see how many bloggers I can interest/irritate by discussing a quick list of what I think works and doesn't...
2008-11-06
453 reads
I'm not sure that I'm wise, but I do feel old quite often. I noticed that after my talk at...
2008-11-06
459 reads
Yesterday I posted about deciding to throw in my hat as far as running for the board, today I'll add...
2008-11-05
446 reads
DevTeach is offering 136 sessions, including 36 on SQL Server, 17 on Agile Development, 17 on Software Architecture, and 57...
2008-11-05
391 reads
I've written my first tip for MSSQLTips.com:
How to setup and use a SQL Server alias
It's a pretty simple thing to...
2008-11-05
908 reads
In my previous posts The Wise Old Man Part 1, The Wise Old Man Part 2 and The Wise Old...
2008-11-05
834 reads
I attended the Business of Software a couple months ago and really enjoyed the conference. I wrote a series of...
2008-11-05
316 reads
A couple weeks ago I wrote about trying to decide whether to run for the PASS board. I talked about...
2008-11-04
557 reads
With a large election year in the US (President + all the other races), I've been more interested than in some...
2008-11-04
398 reads
I'm not trying to talk politics here, but I don't want to be so politically correct that I avoid important...
2008-11-03
455 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