Why is SSDT so slow?
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
54 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
54 reads
I see the same question again and again "I am using SSDT but it takes a long time to publish...
2015-06-02
6,421 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish changes, how do I make it faster?” or the...
2015-06-02
7 reads
It’s been a while since I wrote a question of the day for SQLServerCentral. I wrote Pounds of Formatting Fun...
2015-06-02
294 reads
Did that say free? Why yes, yes it did! But don’t let the price tag fool ya, these are some...
2015-06-09 (first published: 2015-06-02)
12,772 reads
By Steve Bolton
…………As recounted in the first installment of this occasional series of amateur self-tutorials, there are some serious limitations...
2015-06-02
3,855 reads
ISSUE : Today, My Friend is facing issue with SQL Server error logs on one of my production server. SQL Server...
2015-06-02
918 reads
Consider this the outtakes from my previous post about speaking at SQL Saturday.
It took a while for me to build up the courage to finally get up in the...
2015-06-02
16 reads
It’s Monday and time for this week’s weekly blog and twitter round-up for last week. If you haven’t already, follow...
2015-06-01
2,306 reads
Columnstore indexes are fascinating and really cool. Unfortunately, they’re adding an interesting new wrinkle to an old problem.
What’s the Cost...
2015-06-01
822 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