Secure Coding
I was looking recently for some sort of guideline that would help me ensure that code was securely written. I...
2014-05-07
841 reads
I was looking recently for some sort of guideline that would help me ensure that code was securely written. I...
2014-05-07
841 reads
2014-05-07
1,730 reads
I’ve been playing with Filetable and I was asked an interesting question. Can I move files to a folder programmatically?
It’s...
2014-05-06
1,828 reads
Do you have a vocation or career? Steve Jones talks a bit about the difference today.
2014-05-06
175 reads
This past week saw lots of security concerns, especially around data. Steve Jones has a few comments about the implications.
2014-05-05
110 reads
My employer, Red Gate Software, offers a sabbatical to their employees, and this year I’m taking mine. I’ll be gone from...
2014-05-02
1,051 reads
What would build if you had time? Anything fun or interesting? What's on your mind if you're a maker?
2014-05-02
140 reads
2014-05-02
1,857 reads
A good one, one of the better diagrams I’ve seen.
From http://markosrendell.wordpress.com/2014/03/03/practical-benefits-of-continuous-delivery/
Now if we can get tooling and processes to make...
2014-05-01
804 reads
2014-05-01
86 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