SQL server 2014 Service Pack is available (AGAIN ) !!!!!!!!
Yes after its initial release and pull out Microsoft has again made the Service pack 1 for SQL SERVER 2014...
2015-05-20
476 reads
Yes after its initial release and pull out Microsoft has again made the Service pack 1 for SQL SERVER 2014...
2015-05-20
476 reads
This post is part of a series of posts on ASP.NET 5 the series index can be found here ASP.NET...
2015-05-20
89 reads
In the last week or so I’ve published 2 ASP.NET 5 posts each building on top of the previous. I’ve...
2015-05-20
42 reads
This is a temporary post that was not deleted. Please delete this manually. (af8cc091-a628-437f-8918-348486ad1d80 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
The post Temporary Post Used For...
2015-05-20
424 reads
I’ve been busy with other stuff lately and haven’t been able to put much time into this yet, but capturing...
2015-05-19
363 reads
I heard about Connected from a show on NPR (Yes, I listen to NPR, why do people keep saying that?)....
2015-05-29 (first published: 2015-05-19)
5,090 reads
A site that’s a comparison of the platforms.
http://www.pg-versus-ms.com/
Certainly some good arguments being made, but (admittedly) biased towards specific workload items...
2015-05-19
877 reads
By David Postlethwaite
The URL for Microsoft Azure is http://azure.microsoft.com.
Make sure you have an up to date browser because parts of...
2015-05-19
556 reads
On May 18 I presented a session about Extended Events as part of the Global Hebrew PASS Virtual Chapter. I...
2015-05-19
489 reads
I recently was involved in a discussion about whether or not to enable the ‘Optimize for Ad Hoc Workloads’ server...
2015-05-19
828 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
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