RegEx Those Dates
Recently I was working on transforming some dates, and wanted to generate a large n number of dates for testing....
2014-12-15
1,306 reads
Recently I was working on transforming some dates, and wanted to generate a large n number of dates for testing....
2014-12-15
1,306 reads
One of the things I’ll see happen often with SQL Server instances is that the system will run out of...
2014-12-15 (first published: 2014-12-08)
7,695 reads
2014-12-15
1,770 reads
Steve Jones contemplates employment and the future of the last job he'll have. This Friday he asks you if this might be yours.
2014-12-12
164 reads
Steve Jones finds the Salesforce platform interesting and notes we have lots of "citizen programmers" doing work with data.
2014-12-11
146 reads
I wrote briefly about templates in Management Studio (SSMS), and showed the default templates that come with SQL Server. I...
2014-12-11 (first published: 2014-12-03)
7,056 reads
I ran across a post recently where someone had dates stored as characters (never good), but also in this format:...
2014-12-10
862 reads
The sporadic schedule of a day or two a week this holiday season has been a struggle for Steve Jones.
2014-12-09
188 reads
It’s that time of month again, the time when we have a day where everyone writes on the same topic.
This...
2014-12-09
662 reads
Computers aren't necessarily more infallible than humans, and they aren't necessarily even going to make better decisions. We still need humans in the decision process.
2014-12-08 (first published: 2010-06-23)
200 reads
Ten years ago, I published a post about filming a Pluralsight Play by Play...
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...
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