Blog Changes
I have made a few changes to the blog over the past couple weeks The changes have come about as...
2012-10-03
648 reads
I have made a few changes to the blog over the past couple weeks The changes have come about as...
2012-10-03
648 reads
SQL Server Virtualisation and Consolidation: Hands-On
Come and join me in London this December for a three day course covering the...
2012-10-02
629 reads
Come and join me live in New York this coming December where I will be presenting Learning Tree’s2109 SQL Server...
2012-10-01
841 reads
There are still seats left on the Learning Tree course – An Introduction to SQL Server event that I will be...
2012-09-27
812 reads
I run into an interesting issue with an Availability Group database recently. I was running a data load against a...
2012-09-26
5,007 reads
Another date has been added to my schedule for the delivery of 2109 SQL Server Virtualization and Consolidation. Come and...
2012-09-25
680 reads
Its not often I publish two blog posts in a single day but this Monday I will make an exception....
2012-09-24
976 reads
December this year will be a great month for me. I am scheduled to deliver my new Learning Tree course...
2012-09-24
694 reads
SQL Server 2012 has been in RTM since the 1st April 2012. Many of my clients have been evaluating the...
2012-09-20
1,110 reads
This last year or so I have been backing up my important files to cloud. I started using SkyDrive and...
2012-09-19
656 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