2014-05-01
1,662 reads
2014-05-01
1,662 reads
I just got my acceptance to the DevConnections, SQLConnections in September for two sessions:
Continuous Integration for DatabasesMaintaining High Performance When...
2014-04-30
1,375 reads
After surgery Fri am, I’ve been mostly taking it easy, but now it’s back to work. Got kids to school...
2014-04-29
1,433 reads
Creating a directory in a Filetable share is easy. It looks like this:
It’s hard to see, but this was a...
2014-04-29 (first published: 2014-04-21)
2,736 reads
There's a push to the cloud from Microsoft, and Steve Jones has a few thoughts. Have you warmed up to the cloud at all?
2014-04-29
176 reads
2014-04-29
1,724 reads
What problems occur because of the algorithm chosen to generate data? A new report says that social security numbers in the US can be predicted. Steve Jones has a few warnings about what algoriothms you choose.
2014-04-28 (first published: 2009-07-27)
366 reads
2014-04-28
1,447 reads
I’m hoping I’m only out for a day. As I write this, I’ll be recovering from my ACL surgery, though...
2014-04-25
649 reads
This week Steve Jones asks about how important reading is to you, and also about what our digital rights might be in a world where we have connected platforms.
2014-04-25 (first published: 2009-07-24)
167 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