Tracking Deprecated Features
This week I'm in Brno, Czech Republic leading an App Compat seminar for Microsoft clients here, and one of the...
2009-05-26
494 reads
This week I'm in Brno, Czech Republic leading an App Compat seminar for Microsoft clients here, and one of the...
2009-05-26
494 reads
Wes is a friend acquiring via networking and community involvement - another success story! He's based in Tampa and has been...
2009-05-25
564 reads
I've been using Snarfer for a while now, preferring an offline reader so that I use a few spare moments...
2009-05-25
741 reads
I’m giving my talk on The Modern Resume – Building Your Brand a few more times this year and I’ve got...
2009-05-25
993 reads
You have a few options for protecting your SQL Server data at rest. So far I haven't seen anything thing...
2009-05-25
3,515 reads
Today in the United States we celebrate Memorial Day, the day we remember American casualties of any military action. Though...
2009-05-24
566 reads
I'm on a few publishers' lists as someone that reviews books, works with SQL Server, and in general might help...
2009-05-22
761 reads
I installed Hyper-V onto a new machine as a role for the base Windows 2008 server role. It required a...
2009-05-22
1,031 reads
The Making of the Atomic Bomb by Richard Rhodes ($14 at Amazon) was a book I picked up for travel,...
2009-05-21
681 reads
I was late with family issues, and so I missed the social time when I was expecting to do a...
2009-05-21
619 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