What is wrong with people?
I hope this isn't real, but I suspect it is.
If this image disappears, I promise not to sue.
2009-06-10
619 reads
I hope this isn't real, but I suspect it is.
If this image disappears, I promise not to sue.
2009-06-10
619 reads
I got my results from Karla Remail on the SQLSaturday talk over the weekend. I was surprised since typically other...
2009-06-10
346 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-06-09
342 reads
As background, I've never been a fan of multiple instances. It's a useful thing to have available and I use...
2009-06-09
397 reads
As I've related previously (Part 1, Part 2, Part 3, Part 4, Part 5) I've been working author and speaker...
2009-06-09
335 reads
Just a quick note to mention that I'm speaking at the next Space Coast SQL Users Group on Thursday, June...
2009-06-09
426 reads
I got quite the mention from Robert Cain over at ArcaneCode in a blog recently. He listed me as a...
2009-06-09
533 reads
I received my evaluation summary from Karla Remail for this weekend's SQL Saturday event. The results are as follows:
Expectations: 0...
2009-06-09
584 reads
One of the interesting things about Transparent Data Encryption is that it tries to ensure that your data, whenever it...
2009-06-09
471 reads
Just received these from Karla:
Expectations: 0 Did not Meet, 4 met, 6 Exceeded.
Overall quality: Zero 1's, Zero 2's, Zero...
2009-06-08
300 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