My Thoughts: Report Builder 2.0
General Thoughts
One of my brother’s favorite lines to use in presentations says it best, “If Microsoft had 10 dollars to...
2008-12-02
964 reads
General Thoughts
One of my brother’s favorite lines to use in presentations says it best, “If Microsoft had 10 dollars to...
2008-12-02
964 reads
Recently I needed to rearrange some stuff at the office and part of that included moving our install of Quickbooks...
2008-12-02
252 reads
DBA, database developer, analyst, SQL grunt, or whatever your title may be, there is no question that your role will...
2008-12-02
798 reads
For my colleagues and friend who visit my websites (www.bucketofbits.com, www.tyleris.com, www.timmitchell.net), I just discovered that my web host has...
2008-12-01
796 reads
I ran across this history quiz in Jeff Duntemann's blog and thought I'd give it a try. I managed to...
2008-12-01
433 reads
The new Certified Master program sounds suspiciously like the Microsoft Certified Architect program, which appears to have been revamped to...
2008-12-01
763 reads
Steve Ballmer issued a challenge to MVPs a couple weeks ago, asking them to switch to Live Search this week...
2008-12-01
730 reads
That's the question posed by Kalen Delaney in a write up on SQLMag.com. Is a SQL event of more than...
2008-11-30
1,578 reads
In the past few years, many people - myself included - have expressed a desire to see the quality of the Microsoft...
2008-11-29
1,712 reads
I have given a talk about new data types and T-SQL features to three local groups. I am presenting it...
2008-11-28
2,214 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