Run Your Business as a Business
I’ve thought this for a long time: you need to run your business as a business, not an investment. Too...
2008-10-19
885 reads
I’ve thought this for a long time: you need to run your business as a business, not an investment. Too...
2008-10-19
885 reads
I have two speaking engagements for the week of October 19:
South Florida SQL Server User Group - West Palm Beach - October...
2008-10-18
696 reads
I've had a bunch of writings based on finances over the last couple weeks, and I've tried to spread them...
2008-10-17
664 reads
Why, when you can help others, that's when!
In my role as a senior Moderator with the MSDN SQL Forums, I am often...
2008-10-17
459 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
833 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
680 reads
As I travel and visit DBAs from around the United States, I am always surprised at the job titles DBA...
2008-10-16
643 reads
I've always been very concerned about where I work. Well, maybe not always, since early in my career I took...
2008-10-15
636 reads
Every week, there are dozen of free educational events to attend throughout the United States. The sad part is that...
2008-10-15
630 reads
I’m sure that the people at Mint and Thrive have people’s best interests at heart. They built services designed to...
2008-10-14
954 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