Back to Work
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
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
I’ve committed to presenting but haven’t decided on the presentation yet. It will probably be a remote presentation because it’s...
2014-04-29
1,269 reads
Hello Friends,
Sometimes life is so uneasy that you didn’t get time for the work which you like the most. Now...
2014-04-29
1,883 reads
(Be sure to checkout the FREE SQLpassion Performance Tuning Training Plan – you get a weekly email packed with all the...
2014-04-29
1,831 reads
First introduced in SQL Server 2012, the Columnstore index is a new in-memory feature that allows for the creation of...
2014-04-29
5,610 reads
Here are the slides and links to awesome resources for my presentation, “Team-based Database Development: Playing Nice With Others”
If you...
2014-04-29
2,659 reads
Input values are validated using various mechanisms. let’s start by examining how you would validate input parameters in Windows PowerShell...
2014-04-28
765 reads
Input values are validated using various mechanisms. let’s start by examining how you would validate input parameters in Windows PowerShell...
2014-04-28
2,010 reads
I saw this write up about Aaron Sorkin and the writing on Newsroom just after posting Blogging-Write More and found...
2014-04-28
642 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-04-28
649 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