Facebook - I'm on it
I've never really gotten the social site thing. I don't get the appeal of Facebook, LinkedIn, Plaxo, MySpace, etc., beyond...
2008-09-23
1,630 reads
I've never really gotten the social site thing. I don't get the appeal of Facebook, LinkedIn, Plaxo, MySpace, etc., beyond...
2008-09-23
1,630 reads
Several years ago during the first iteration of the Orlando SQL Server Users Group I talked a friend into attending....
2008-09-23
1,842 reads
I've been playing with WSUS lately and I've been less than satisfied with the reporting. Since the information I need...
2008-09-23
1,124 reads
Mechanical posts are ones that are either auto-generated, or manually input with no real additional work put into them - an example...
2008-09-22
1,048 reads
Why did I write this? I got challenged by Andy Warren to write a bit about why I wrote something....
2008-09-22
766 reads
It's been a while since I've written a blog post that wasn't a user group announcement. Here's what I've been...
2008-09-22
680 reads
I've been using a Dell Latitude for a looong time, probably going back to 2000 or 2001. Decent machine - though...
2008-09-21
796 reads
Whenver we start a somewhat big IT project, it is natural for us to build a team dedicated to the...
2008-09-20
2,735 reads
I'm starting a series of blog posts from the Business of Software conference
that I attended last week in Boston. If...
2008-09-18
754 reads
Most of my posts here are reasonably serious, and really this one is too, but a but of humor mixed in....
2008-09-18
666 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
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