The Best Programmers
How do keep the best programmers? Steve Jones has a few thoughts that might cause you to rethink how you manage your programming stars.
2013-06-18
390 reads
How do keep the best programmers? Steve Jones has a few thoughts that might cause you to rethink how you manage your programming stars.
2013-06-18
390 reads
As data professionals, we want to avoid losing data. We won't always be successful, but we can avoid making the easy mistakes.
2013-06-17
114 reads
This week is the kickoff of the third year of SQL in the City from Red Gate. As we have...
2013-06-17
964 reads
Why does the IT industry seem to act and run so differently than many other industries? Steve Jones takes a stab at explaining this.
2013-06-17
139 reads
The best at their crafts are usually the most rewarded in sports, but not necessarily in other fields. This week Steve Jones asks if you would like it to be different?
2013-06-14
199 reads
Computer vision has been something that researchers have worked on for years. We have no shortage of cameras, and we are starting to see the computing systems behind these devices starting to actually understand what is being seen. That understanding is very valuable. Will we see something similar happening in our SQL Server technologies?
2013-06-12
115 reads
IBM's Watson project continues to grow and the latest implementation might be one that affects many of us in our daily lives.
2013-06-11
120 reads
It’s T-SQL Tuesday time, and this one is a bit of a challenge for me. Rob Farley is hosting, and...
2013-06-11
949 reads
The next version of SQL Server was announced last week and Steve Jones is pleased with the name.
2013-06-10
312 reads
When a disaster occurs, the response from your organization isn't always pre-determined. There are times when you might not want to failover to secondary systems, especially if you don't expect the disaster to last long. How do you decide when to fail over?
2013-06-07
126 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