PASS
I arrived home this morning after another PASS Summit. This is my 6th in a row. Each year I have...
2008-11-22
437 reads
I arrived home this morning after another PASS Summit. This is my 6th in a row. Each year I have...
2008-11-22
437 reads
I broke down and bought my first Vista machine last Sunday, an HP Pavilion from a local box store. From...
2008-11-21
610 reads
2008-11-20
743 reads
Shortly after I gave my presentation Trigger Happy Database Security down in Jacksonville for SQL Saturday #3, I received an...
2008-11-20
859 reads
I've been hanging around the SQL PASS Summit this week and came to a realization, I do know something...
I don't...
2008-11-20
445 reads
Went to the intro and keynote yesterday, even though I know better. They weren't bad, they just weren't great. I...
2008-11-20
666 reads
I couldn't muster the enthusiasm for a keynote today, so I went for a walk, stopping first for a doughnut...
2008-11-20
748 reads
It’s been a great week at PASS thus far and many others have written on their experiences so I’ll do...
2008-11-20
582 reads
The morning keynote opening was good. We had video of the conference playing here and there, the election candidate positions...
2008-11-20
1,074 reads
He's the manager for BI, the General Manager, and he's here to talk about the challenge and promise of Pervasive...
2008-11-20
1,192 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