A Laptop is nice
It's almost 9, I've been working for over an hour, and only one foot has left the bed. It touched...
2009-07-08
457 reads
It's almost 9, I've been working for over an hour, and only one foot has left the bed. It touched...
2009-07-08
457 reads
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
896 reads
If you haven’t seen the news yet we’ve got something new on the schedule this year – a 2 hour seminar...
2009-07-08
571 reads
It was kind of amazing to see SQLServerCentral have issues over the last few days. We’re still not sure what...
2009-07-08
476 reads
A new scheme to get ATM PIN numbers using automated systems and VOIP is in play. It's described here and...
2009-07-08
288 reads
I finally made the call today to reserve my room in Baton Rouge for SQLSaturday #17 in Baton Rouge, LA....
2009-07-07
570 reads
I recently saw that Steve Jones had posted an update on his 2009 goals and realized that is was about...
2009-07-07
371 reads
It seems that I see more and more posts about people trying to shrink their transaction logs. It's getting to...
2009-07-07
1,853 reads
There are a lot of exciting events happening in the next 2 months that you should be involved in so I...
2009-07-07
823 reads
One of the things I recommend to people that are looking to get into blogging is that they write 10...
2009-07-06
355 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 Stored Procedures for Server-Level Object...
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
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