Live 360 Discount Code & Helping Digby!
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
404 reads
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
404 reads
Join me at SQL Live 360 this November!
I am hugely excited to have been selected to present at Live 360,...
2014-08-05
874 reads
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various presentations and labs, that means also upgrading and/or converting...
2014-08-05
5 reads
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various...
2014-08-05
1,363 reads
I was reading SqlServerCentral.com Articles Requested forum and saw this request.
Looking for an article that takes data from an XML...
2014-08-14 (first published: 2014-08-04)
9,589 reads
Coming up this week, I have been given the opportunity to do something I enjoy doing. I have been invited to present to the folks in Philadelphia. Sebastian...
2014-08-04
8 reads
Coming up this week, I have been given the opportunity to do something I enjoy doing. I have been invited...
2014-08-04
725 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-08-04
467 reads
First, a quick update on the LinkedIn advetising campaign. One click so far, no registrations. More views than I expected...
2014-08-04
609 reads
Writing MDX inside of Reporting Services has been the nemesis for many report writers for far too long. If all...
2014-08-13 (first published: 2014-08-04)
8,692 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