Contracting – Your best clients are your current clients…
and your old clients too.
Before I started my contracting business five years ago I realised the importance of selling and...
2012-06-20
841 reads
and your old clients too.
Before I started my contracting business five years ago I realised the importance of selling and...
2012-06-20
841 reads
As I mentioned in my post last week I was fortunate enough to visit Washington DC a week or so...
2012-06-18
728 reads
This past week my international adventures have continued. As some of you know, for the past couple of years, I...
2012-06-13
1,543 reads
I have been thinking about this for a while now, but I have decided to change my twitter handle. I...
2012-06-08
729 reads
I wrote a post earlier this week telling you all about my trip to Ottawa last week, during my trip...
2012-06-01
874 reads
By David Postlethwaite
I was at a meeting the other week when someone mentioned that you could specify two SQL Servers...
2012-05-31
1,748 reads
I’m very lucky in my work as freelance consultant and trainer I get to travel the world, and last week...
2012-05-30
2,136 reads
I got asked a question recently about what books I would recommend for learning T-SQL. I posted a couple months...
2012-05-29
1,125 reads
Between my old website, which I started back in 2007 (which has since disappeared) and my blog, which I switched...
2012-05-28
1,039 reads
Ryan Recruiter meet Dave DBA…
As a contractor and consultant I get to speak to many agents and recruiters and over...
2012-03-14
719 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