Beta Testers Needed for IT Project, Task and Request Management System
My friend Michael Lato sent me an email asking if I would take a look at his newest venture called...
2009-03-16
512 reads
My friend Michael Lato sent me an email asking if I would take a look at his newest venture called...
2009-03-16
512 reads
One of the things that I've struggled with for some time is how to manage my data across multiple machines....
2009-03-16
934 reads
We just had our bi-monthly SQL group meeting (www.opass.org) with Kendal Van Dyke presenting The Truth About Disk Performance & Configuration,...
2009-03-16
568 reads
One of the videos I did for JumpStart TV is up on the front page:
SQL Server Authentication Modes
It is an...
2009-03-16
1,146 reads
Had a note from Ken Starnes in Portland, the date for SQLSaturday #12 has changed to June 6th (same date...
2009-03-16
594 reads
I have to admit, after the news of AIG bonuses over the weekend, this looks bad. In fact, it annoys...
2009-03-16
776 reads
In response to former Quebec Premier Bernard Landry’s comments of this past week regarding the posting of Michael Sabia as...
2009-03-15
4,336 reads
I was looking at Twitter the other day and saw a few of the people I follow debating the need...
2009-03-13
805 reads
Yesterday evening I gave a talk about Grouping Sets in SQL 2008 thanks in part to the original front-page blog post...
2009-03-13
660 reads
Last night I was at the store with Delaney after karate and he mentioned that we needed to go pick...
2009-03-13
866 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