Acronis True Image 2009 - Cloning a Disk
With my hard drive failing in the laptop recently, I scrambled to do something. I was on the road, and...
2009-07-17
2,657 reads
With my hard drive failing in the laptop recently, I scrambled to do something. I was on the road, and...
2009-07-17
2,657 reads
I finished reading Fault Line by Barry Eisler ($16.50 @ Amazon) a few weeks ago. I’ve been a fan for a...
2009-07-17
602 reads
Every so often I run into a fellow DBA or database developer who isn't crystal clear on how file/folder and...
2009-07-16
6,008 reads
I've been tech editing Michael Cole's new book on Encryption in SQL Server, which is due out in August or...
2009-07-16
352 reads
I've been quiet as of late, pretty much ever since i went to Bethany Summer Youth Camp (BSYC) as a...
2009-07-15
752 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-15
427 reads
I am in the process of creating a new blog, but I am having difficulty coming up with a good...
2009-07-15
1,203 reads
Last night I attended, along with about 20 others, the latest and greatest OPASS meeting. I got there early to...
2009-07-15
535 reads
There may be some people wondering why I go by the name @unclebiguns on Twitter. I am basing this on...
2009-07-15
399 reads
Recently, a fellow DBA showed me a set of documentation on a commercially available product. This is a product people...
2009-07-15
1,788 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