MSSQLTips / Tegile Systems Webinar Wrap up
Thank you all for attending my MSSQLTipswebinar today with Sumeet Bansal from Tegile Systems! In the presentation, I made reference to...
2015-06-23
624 reads
Thank you all for attending my MSSQLTipswebinar today with Sumeet Bansal from Tegile Systems! In the presentation, I made reference to...
2015-06-23
624 reads
Last week, Redgate Software had a large company meeting and our annual Day Out, with myself and a few dozen...
2015-06-23
708 reads
I’ll be doing a precon for SQLSaturday #421 in Columbus Ohio on July 10th, 2015 titled “Planning a High Availability and Disaster...
2015-06-23
423 reads
Published last week on SQLServerCentral, Sweat Files and Practice Projects is about the need/lack of packaged projects that a newbie...
2015-06-23
340 reads
[read this post on Mr. Fox SQL blog] Its time to take a well deserved 1/2 time break in my 8 part post series on SQL Partitioning and so I have...
2015-06-22
12 reads
[read this post on Mr. Fox SQL blog]
Its time to take a well deserved 1/2 time break in my 8 part post...
2015-06-22
961 reads
This is part of a series on how to take the Adventureworks database and bring it in line with modern...
2015-06-22
877 reads
This is part of a series on how to take the Adventureworks database and bring it in line with modern...
2015-06-22
52 reads
This is part of a series on how to take the Adventureworks database and bring it in line with modern...
2015-06-22
52 reads
In my first post in the series, I provided a basic introduction to Microsoft’s new product: Azure DocumentDB, and how...
2015-06-22
845 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