2014-10-06
1,632 reads
2014-10-06
1,632 reads
The popularity of SQL Server seems to be high, but there might be reasons to be concerned.
2014-10-03
702 reads
If you couldn't vote last week or didn't get a ballot, you still can. Please go to www.sqlpass.org and learn more.
2014-10-03 (first published: 2014-09-29)
493 reads
2014-10-03
2,047 reads
I think learning to better test our software, including the database objects, is one of the ways in which we’ll...
2014-10-02
790 reads
Microsoft has released a final service pack for SQL Server 2008 R2, which many of you might want to install.
2014-10-02
222 reads
2014-10-02
1,657 reads
This editorial was orignally published on Dec 8, 2009. It is being re-run as Steve is on vacation. Would you like the idea of capturing everything you do? Audio, video, text, code, a log of your life. A new book from Microsoft Research talks about this and Steve Jones things it could be an interesting capability for your career.
2014-10-01 (first published: 2009-12-08)
158 reads
2014-10-01
2,040 reads
How do you grow your career? Steve Jones has a few ideas on what you can do to both improve your skills and build your brand.
2014-09-30
277 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 Databricks Genie Spaces for SQL...
Comments posted to this topic are about the item The Costs of Multiple Platforms
Comments posted to this topic are about the item RegEx Functions II
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