Kindle Update – Version 3?
I haven’t written about the Kindle lately, but I have noticed some news and I found it interesting.
First I saw...
2009-05-06
521 reads
I haven’t written about the Kindle lately, but I have noticed some news and I found it interesting.
First I saw...
2009-05-06
521 reads
Yep, yesterday in Prishtina, capital city of Kosova was held the event named, Oracle Day in Kosova! It was very...
2009-05-06
526 reads
As I've mentioned in earlier posts (Part 1, Part 2, Part 3) I've engaged speaking and networking Don Gabor to...
2009-05-05
415 reads
It was time.
I decided the other day that I needed to shave, and so the goatee came off. It's been...
2009-05-05
463 reads
This is spurred on by a comment a pen tester made. He was referring to a particular technology and said...
2009-05-05
1,255 reads
When I plugged in my USB->Serial adapter for the weather station, it popped up the “New Hardware” dialog. My machine...
2009-05-05
395 reads
Just had a call with Ken Starnes last week and all is proceeding for a great two track event in...
2009-05-04
298 reads
My friend Grant Fritchey recently posted in response to a quiz and at the end of that mentioned that he'd...
2009-05-04
587 reads
This is part one of a series on writing a technical article. The advice might apply to non-technical articles, but...
2009-05-04
1,683 reads
Shortly after the Zune debuted, I purchased one. And I've been happy with it. It's done everything I expected out...
2009-05-04
867 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