Updated Blog List
I added a new blogger to my list. I was surfing around for a few good examples to use in...
2009-08-19
731 reads
I added a new blogger to my list. I was surfing around for a few good examples to use in...
2009-08-19
731 reads
I/O I/O - It's why my server's slow.....
Often I've been curious about ways to measure the performance of SQL Server, and...
2009-08-18
4,637 reads
In the Spring of 2008 Idera launched its SQL admin toolset at a super low deal of around two hundred...
2009-08-18
1,807 reads
In my Modern Resume presentation I have a few slides on blogging, a couple of which are hints and tips...
2009-08-18
1,185 reads
I’ve had this link about four kinds of free (and this link too) on my list for awhile, today seems...
2009-08-18
661 reads
I meant to write this earlier, like in July, but I suppose it's better late than never. I'm halfway through...
2009-08-18
1,315 reads
If you are in Austin you should stop by!
If you want to know what is going on SQL Server wise...
2009-08-18
825 reads
Jack Corbett sent me an email this morning about the Swiss SQLSaturday, very cool! They did a great job on...
2009-08-18
746 reads
I’ve touched on it some in the past, but it’s a question that comes up a lot when we discuss...
2009-08-17
1,264 reads
Not obvious how to do this, go to http://www.regonline.com/Checkin.asp?EventId=685107, login, then click on Agenda. You can then add any of...
2009-08-17
763 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