Office Ribbon - Find The Command/Out of Office?
I guess I'm stuck in the past, but the Office Ribbon still hasn't grown on me. I think it makes...
2008-12-22
744 reads
I guess I'm stuck in the past, but the Office Ribbon still hasn't grown on me. I think it makes...
2008-12-22
744 reads
There's one report that I look at every day to assess how things are going on a project we launched...
2008-12-21
617 reads
I was reading through the SQL Server 2005 SP3 release notes yesterday (sadly, it was enjoyable) and clicked through to...
2008-12-19
807 reads
I saw a question today on restoring a SQL Server 7 backup to SQL Server 2005, and I wasn't sure...
2008-12-19
670 reads
Last and not least this week, The Snowball: Warren Buffett and the Business of Life. This is an authorized biography...
2008-12-18
711 reads
My friend Jack has been blogging for almost a year now and is looking for feedback. If you're a blogger...
2008-12-18
598 reads
I was tagged by Gail Shaw to post two big mistakes made during my professional career. The only challenge here...
2008-12-18
843 reads
I missed the November Car update, but I was too busy with the PASS Summit to get one done.
However last...
2008-12-18
665 reads
I'm still finishing up two books that I'll mention today. Most non-technical books I read straight through, anything technical/learning based...
2008-12-17
546 reads
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
543 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