Networking - Part 1
This post, and the next couple in the series (which may not be this week) are me talking through what...
2009-01-06
665 reads
This post, and the next couple in the series (which may not be this week) are me talking through what...
2009-01-06
665 reads
I received notification a few days ago that I was selected again to participate in the We Are Microsoft charity...
2009-01-06
920 reads
If you are thinking about attending DevTeach/SQLTeach in Vancouver this June 8-12, 2009, and you haven't registered yet, you need...
2009-01-06
432 reads
I've been trying to comment on a few interesting blogs here today, but for some reason I can't. It seems...
2009-01-06
577 reads
I wrote a bit of an analysis for my 2008 goals, but didn’t really list any for 2009. Partially because...
2009-01-06
773 reads
Steve Jones recommended this one to me. It starts at the very beginnings of UPS and goes through pretty much...
2009-01-05
407 reads
Last year we acquired a small aquarium for my daughter, and then upgraded to a whopping 10 gallon tank. Turned...
2009-01-05
4,022 reads
I've always been in favor of investing in things that I think will benefit me long term, but all investments...
2009-01-05
1,582 reads
My friend Will Strohl leads this group and asked for help getting the word out. I'm planning to attend.
URL:http://orlando.dotnetnukeug.net/WhatsNew/Events/tabid/91/ctl/Details/Mid/428/ItemID/16/Default.aspx?selecteddate=1/6/2009
Speaker: Stan...
2009-01-05
364 reads
CHECKSUM is a TSQL function that computes a hash value over a list of arguments. The great thing about creating...
2009-01-05
20,737 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
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...
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