Software East - Building a Software Business
While in Cambridge, I went to watch a panel talk about building a software business. Neil Davidson, CEO of Red...
2009-02-02
879 reads
While in Cambridge, I went to watch a panel talk about building a software business. Neil Davidson, CEO of Red...
2009-02-02
879 reads
I’ve seen a good deal of coverage recently that is geared toward those who have recently begun a career as...
2009-02-01
856 reads
If you're organizing a first time community event like SQLSaturday finding speakers is one of about a hundred tasks, so...
2009-02-01
1,102 reads
I’ve got a Sidekick 3 right now that works OK for me, lets me check some basic email, get texts,...
2009-01-30
1,518 reads
A number of book publishers regularly send me books, hoping that I will write a good review for them. Most...
2009-01-30
1,959 reads
The European PASS Conference will be held in Neuss Germany (near Düsseldorf) from April 22-24, 2009. It will include 36...
2009-01-29
1,572 reads
The fifth annual South Florida Code Camp is being held on Feb 7th. They've got a huge schedule of sessions,...
2009-01-29
1,289 reads
I ordered new business cards recently after I gave one to someone that needed to send me something and realized...
2009-01-29
1,583 reads
As reporting requirements increase, it seems that aggregate functions have thankfully risen to the occasion concurrently. To maintain its competitive edge...
2009-01-28
2,694 reads
Normally when I write a book, I create a book outline, give it to my editor for feedback, make some...
2009-01-28
4,084 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