SQL Saturday Jacksonville Recap
Note: I intended to post this last week but life\work\burnout and installing Windows 7 RC got in the way.
Another weekend,...
2009-05-12
436 reads
Note: I intended to post this last week but life\work\burnout and installing Windows 7 RC got in the way.
Another weekend,...
2009-05-12
436 reads
You will be at least 2 cents richer....
2009-05-12
541 reads
Most of us are tired of this overused, vague term. How many of you have clicked on a 'DBA' job...
2009-05-12
1,205 reads
SQLServerCentral had a press release today about attending the Summit and the networking opportunities, something that I've been blogging about...
2009-05-12
881 reads
It's been a slower pace since the last update. Grant and I are working on the publication process for content...
2009-05-12
754 reads
I've been tech editing a book about SQL Server encryption and this series of blog posts looks at some interesting...
2009-05-12
8,516 reads
Hmm, SQL Server 2008 is completed everyday till possible new versioin. So know we have available the SQL Server 2008...
2009-05-12
618 reads
This morning, with a sore back, I’m struggling a little to sit still, but I’ve managed to get things done....
2009-05-11
559 reads
While I was testing some things the other day my desktop was running slow. I mean so slow that typing...
2009-05-11
806 reads
Last year I wrote about signing up for Clear, a registered traveler program. I've flown enough to make it useful...
2009-05-10
590 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