I'm Back!
I've been gone... wow. Since March 31st of this year?! Let's fix that.
So what has been holding me back?
Kids? I...
2016-09-23
376 reads
I've been gone... wow. Since March 31st of this year?! Let's fix that.
So what has been holding me back?
Kids? I...
2016-09-23
376 reads
Warning: This is a really short post.
Today March 31st, BrentOzar.com is giving away their videos! Well, not giving away... but...
2016-03-31
767 reads
We're proud to bring back the OKC SQL Saturday for the 5th year in a row! We have 3 precons...
2015-03-09
771 reads
I've been gone for a bit, forgive the long delay. Who would have thought the hatred for a cascading delete...
2015-03-03
1,110 reads
This is just a short update. I will be speaking at SQL Saturday Kansas City! I really hope to see...
2014-09-08
596 reads
SirSQL made a rather stirring post recently. He talked about a speaker buddy system to help out new speakers in...
2014-07-25 (first published: 2014-07-21)
8,015 reads
My very first IT job was a bit daunting for me. I really wanted to do my best but I...
2014-07-07
550 reads
Personal Thoughts
Just to be clear, I don't expect everyone to have my same thoughts. I personally fully support SQLServerCentral and...
2014-06-23
493 reads
I've been accepted for SQL Saturday Baton Rouge!
Yes, I am a little excited. I've wanted to become a speaker for...
2014-06-16
519 reads
I think I'd like to do a small short series on documentation. I personally love documentation. I honestly think most...
2014-06-09
743 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