Immune Systems, User Groups, Changing Jobs
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,076 reads
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,076 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
491 reads
I had an interesting question from someone that I respect and I’ve seen answering questions and writing a few articles...
2008-12-04
332 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-12-04
861 reads
Hopefully in the next week or so the full financial info will be released to all members, but in the...
2008-12-03
345 reads
A few of you might be thinking about getting a Kindle for Christmas.If you read a lot, and you move...
2008-12-03
737 reads
Over the past several months, I’ve started diving into the world of wait stats on my instances. An ever present...
2008-12-03
730 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
… and joined Twitter. I’m only doing it ‘cuz everybody else is doing it. With all the other social networking tools...
2008-12-02
629 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
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