Relocating oPASS
I mentioned last week about closing down sqlgroups.com and trying to decide on a new home for oPASS.org. We did...
2009-08-04
359 reads
I mentioned last week about closing down sqlgroups.com and trying to decide on a new home for oPASS.org. We did...
2009-08-04
359 reads
Microsoft has a new KB article describing a problem where the MAXDOP setting that you specify (whether at the instance...
2009-08-04
827 reads
Code Outlining has been part of Visual Studio since VS.NET 2002. If you're not familiar with it, code outlining is...
2009-08-04
471 reads
Let's say it is a late Monday morning, because something always comes up before you are required at your vocation,...
2009-08-04
7,959 reads
I was asked to do an hour presentation during the 24 Hours of PASS, which takes place on Sept 2,...
2009-08-04
517 reads
I think the database developer role is on the rise and that it's better suited for agile practices - but guidance...
2009-08-04
3,501 reads
After spending much of the last two days reading through over 200 SQL Saturday Event Evaluations I have come up...
2009-08-04
855 reads
John Dunagan is the “Chief Organizer” of this event on October 3rd in Estero, FL, just south of Ft Myers....
2009-08-04
328 reads
Are you an active SQL Server blogger? Do you blog regularly about the greatest database technology available? If so, you...
2009-08-04
630 reads
John finally got things caught up and had time to finish the evals, here’s how I did on my presentation...
2009-08-03
332 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