2008-02-25
2,967 reads
2008-02-25
2,967 reads
2008-02-22
2,564 reads
2008-02-21
3,229 reads
2008-02-20
3,324 reads
2008-02-19
3,135 reads
2008-02-18
3,247 reads
2008-02-14
2,535 reads
We've grown much faster and further than we expected and so the time has come to move. To a new collocation facility this weekend. We'll be down for a few hours Saturday and hopefully after that you won't notice a thing.
2004-09-17
2,842 reads
2004-09-17
4,507 reads
All the submissions for the Nightmare Contest are in, now take a moment and vote for your favorite.
2004-09-08
3,720 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
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
Comments posted to this topic are about the item RegEx Functions II
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