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
52 reads
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a...
2010-10-10
52 reads
10 years ago IT professionals considered database technology “mature” and analysts were preparing to...
2010-09-13
33 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
31 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
39 reads
2001-01-01
56 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
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