2015-03-02
1,512 reads
2015-03-02
1,512 reads
This week Steve Jones wonders if you'd be willing to use Express edition in production situations.
2015-02-27
146 reads
I’ve been using tSQLt a bit to do some testing and one of the things I’ve tested is standards for...
2015-02-27 (first published: 2015-02-12)
8,020 reads
Today Steve Jones talks about development, and finding ways to make small changes that improve your code.
2015-02-26
212 reads
I’m continuing on with my project to grab SQL Saturday data and automatically insert it into a SQL Server database....
2015-02-25
1,442 reads
Today Steve Jones talks leadership, and the value it can bring to your team if you display just a little of it.
2015-02-25
148 reads
PASS President Tom Larock doesn't make long term plans. Steve Jones doesn't make long term plans. Do you?
2015-02-24
133 reads
I was tasked recently with removing the full text indexes in Adventureworks for a demo. The full text indexes were...
2015-02-23
992 reads
This week Steve Jones talks about the query store after an article was released describing it.
2015-02-23
219 reads
2015-02-20
1,758 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