Raw Materials - The Low Bid
When a job is too simple to be done in-house, how far down the phylogenetic tree should you go?
2011-09-06 (first published: 2009-09-16)
7,679 reads
When a job is too simple to be done in-house, how far down the phylogenetic tree should you go?
2011-09-06 (first published: 2009-09-16)
7,679 reads
2011-09-01 (first published: 2009-09-09)
11,453 reads
Total Information Awareness can destroy your sanity. Get used to it.
2011-08-30 (first published: 2009-09-02)
11,277 reads
2011-08-25 (first published: 2009-08-26)
11,047 reads
2011-08-23 (first published: 2009-08-19)
11,025 reads
2011-08-18 (first published: 2009-08-12)
9,521 reads
2011-08-16 (first published: 2009-08-05)
9,037 reads
2011-08-11 (first published: 2009-07-29)
9,856 reads
Revenge is a dish best served cold, but body temperature's OK, too.
2011-08-09 (first published: 2009-07-22)
9,351 reads
2011-08-04 (first published: 2009-07-15)
10,129 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