Enjoy Your Life
A sad weekend, and shocking news Sunday morning. I was out running errands when I checked email and found out...
2011-04-25
1,593 reads
A sad weekend, and shocking news Sunday morning. I was out running errands when I checked email and found out...
2011-04-25
1,593 reads
Day 25 RMO I have observed that no body has written anything about RMO. And replications is one of my...
2011-04-25
394 reads
You’ve set up your access to a SQL Azure site so you’re ready to go. Now how do you get...
2011-04-25
1,527 reads
I have blogged before about my appreciation for the SQL community mainly within the PASS organization as that is what...
2011-04-25
544 reads
Have you heard about this new project out there called SQLPeople? It is a new (relatively) project that is the...
2011-04-25
545 reads
Have you heard about this new project out there called SQLPeople? It is a new (relatively) project that is the brainchild of Andy Leonard. Andy is trying to help...
2011-04-25
11 reads
Imagine you have spent the last 9 months developing a sales Data Warehouse and an Analysis Services cube.Your end users...
2011-04-25
4,283 reads
Ever have one of those days where no matter how hard you try you just can’t seem to make any...
2011-04-25
694 reads
Hello World. Stardate 1513.1. After reading that, if you know what I am referring to, you are a tech-head and...
2011-04-25
729 reads
Why should you go to the trouble to start blogging, speaking, answering questions or anything else. What’s the point?
I’ve written...
2011-04-25
1,335 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