Jumping the Gun
How quickly should security issues be reported? Steve Jones isn't sure, but he talks a bit about what we might want to do.
2008-10-02
68 reads
How quickly should security issues be reported? Steve Jones isn't sure, but he talks a bit about what we might want to do.
2008-10-02
68 reads
Steve Jones talks a bit more about the employee manager relationship in this turbulent times.
2008-10-01
118 reads
Managing DBAs can be a challenge for both sides. Steve Jones talks a bit about some of his relationships with managers and the trouble that sometimes occurs.
2008-09-30
275 reads
A new SQL Server system has claimed the top spots in the TPC-E benchmark, but Steve Jones doesn't think it's that impressive.
2008-09-29
59 reads
This month's car update focuses mainly on the Prius and changes that might coming in the car industry.
2008-09-29
196 reads
The myth of Prometheus has some relevance to technology workers. How? Read what Steve Jones thinks.
2008-09-25
154 reads
Steve Jones isn't talking about his new television, but rather a new technology dealing with data and databases.
2008-09-24
151 reads
The cost of fuel is rising, telecommuting is becoming more widespread, and the advance of digital technologies has us often working virtually, even in the same office. Steve Jones thinks we shouldn't forget the value of a little face time and and then.
2008-09-22
79 reads
As we retain more and more data, it becomes important not just to decide how long to retain different types of data, but also to identify that data that can be removed. Steve Jones talks about some of the challenges of this with databases.
2008-09-22
63 reads
This Friday Steve Jones polls the community of developers about the time they spend dealing with data access.
2008-09-19
134 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