Recovering from Bad Deployments
When you deploy software, what do you do if things don't go well? Steve Jones talks about a few options you might have.
2015-01-06
128 reads
When you deploy software, what do you do if things don't go well? Steve Jones talks about a few options you might have.
2015-01-06
128 reads
In a recent post, I described an attack against a privileged account using a simple SQL Injection technique of updating...
2015-01-05
852 reads
What helps people be successful in a company? Perhaps a little analytic work can help employers determine this.
2015-01-05
231 reads
I started this on Jan 1, but with family commitments, I ended up delaying it until today. I wrote about...
2015-01-02
889 reads
Steve Jones looks forward to the new year and asks in this poll what you think will happen.
2015-01-02
139 reads
2015-01-02
1,766 reads
I got an email recently where someone asked me how they can refresh a dev environment with Powershell. I guess...
2015-01-01 (first published: 2014-12-29)
9,388 reads
2015-01-01
2,332 reads
As we look to the new year, Steve Jones wonders what improvements you might be planning for your career.
2014-12-31
203 reads
2014-12-31
2,036 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
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