Getting ready for the third “Industrial Revolution”: Database 2010-2015
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a...
2010-10-10
53 reads
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a...
2010-10-10
53 reads
10 years ago IT professionals considered database technology “mature” and analysts were preparing to...
2010-09-13
35 reads
“The information age is an idea that the current era will be characterized by the ability of...
2010-08-22
26 reads
“Content is king” is the golden rule of the SEO. The semantic web is all about data. Any web...
2010-06-25
33 reads
Microsoft is associated almost exclusively with Windows and Office. Unfortunately a lot more...
2010-05-15
30 reads
I just finished reading “The next wave of technologies” by Phil Simon. A great read! It proposes a...
2010-04-18
25 reads
The 2008 trending topic everyone was talking about was the Web 2.0. On October 23 that same year,...
2010-04-02
42 reads
2001-01-01
57 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