The Development Backup
Backing up your development environment can be important. After all, aren't your developers producing products that you use?
2014-05-20
156 reads
Backing up your development environment can be important. After all, aren't your developers producing products that you use?
2014-05-20
156 reads
In a previous post, I looked at the ways in which I could insert files into a Filetable folder programmatically....
2014-05-19
1,358 reads
Problems with SQL Server after applying the Windows 8.1 update have Steve Jones concerned about software updates.
2014-05-19
106 reads
This week Steve Jones has a poll to make you think based on Tim O'Reilly's look back at how he succeeded and failed with his company.
2014-05-16
140 reads
2014-05-16
1,653 reads
I got this from watching a session from Jeffrey Snover at TechEd. It was a neat trick, and it’s worked...
2014-05-15
1,436 reads
It seems as though the quality of much software isn't very good. What is that? Couldn't we do better? Certainly some people write much better code. Why can't the rest of us imitate them?
2014-05-15
290 reads
2014-05-15
1,470 reads
2014-05-14
770 reads
What are better ways to train people to work in the technology field? Steve Jones has a few ideas.
2014-05-13
189 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