Audi A4 Production
I found a cool video on the 37 Signals blog that showed the Audi A4 production process. It’s relatively low...
2009-03-19
782 reads
I found a cool video on the 37 Signals blog that showed the Audi A4 production process. It’s relatively low...
2009-03-19
782 reads
Starting the summer 2002, for about a year or so, the team and I embarked on a project to develop business...
2009-03-19
984 reads
I joined in late to a conference call this morning from Quest where a number of their experts were talking...
2009-03-19
1,073 reads
I committed today to attend SQL Saturday #14 in Pensacola on June 6, 2009. I'll be giving The Modern Resume...
2009-03-19
580 reads
I was browsing the March 2009 issue of Visual Studio Magazine today and found that it's changing again. It's been...
2009-03-19
780 reads
I tend to work with a fair number of documents in my job. Between articles that are sent to me,...
2009-03-18
1,132 reads
Yesterday I presented to the Charlotte SQL Server User's Group. Since I live in Denver, it didn't make a lot...
2009-03-18
1,310 reads
I try to go to a spring training game once or twice a year and it serves as a useful...
2009-03-17
718 reads
Since I’m doing more speaking this year, I decided to spend a bit of time working on my delivery and...
2009-03-17
930 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
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