Azure HDInsight – Hadoop in the Cloud
Azure HDInsight Overview
HDInsight is a cloud based implementation hosted in the Microsoft Azure cloud. It enables you to quickly create,...
2014-07-10
507 reads
Azure HDInsight Overview
HDInsight is a cloud based implementation hosted in the Microsoft Azure cloud. It enables you to quickly create,...
2014-07-10
507 reads
Since I have been involved with and eventually head of the Baton Rouge SQL Saturday planning committee each year since...
2014-07-10
715 reads
Last night was a big success for the first annual Baton Rouge User Groups Networking Night, an all-user-groups invited event...
2014-07-10
624 reads
Technical conferences have always been a great venue for networking and increasing my knowledge base. Mile High Tech Con will...
2014-07-09
776 reads
A few months back I made the decision to leave the relative comfort and security of my permanent role and...
2014-07-09
575 reads
An SSIS question! How’s that for a change of pace? SSIS Column Export is, as you might well surmise, about...
2014-07-09
578 reads
Last week ended up better than expected when PASS decided to release feedback to speakers (selected or not) who requested...
2014-07-09
705 reads
Here is an overview of the articles I published in the second quarter of 2014.
Intense School
MCSE Prep: The Integration Services...
2014-07-09
571 reads
Question: “What time is it?”
Answer: “T-SQL Tuesday time”
Question: “What time?”
Answer: “T-SQL Tuesday time”
“I can’t hear you?!?!?!”
That’s right; it’s that time...
2014-07-09
411 reads
Well, here it is again. The second Tuesday of the month, which means that it’s T-SQL Tuesday. This month, Dev...
2014-07-08
804 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
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...
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