SQL Server 2012 Books
SQL Server 2012 was released to manufacturing last week, you can download it from MSDN if you have subscription or...
2012-03-13
2,185 reads
SQL Server 2012 was released to manufacturing last week, you can download it from MSDN if you have subscription or...
2012-03-13
2,185 reads
As you probably know by now SQL Server 2012 was launched last week, Microsoft had an online launch event that...
2012-03-12
3,491 reads
I asked a few questions on twitter this morning after a friend of mine said they were have problems downloading...
2012-03-06
781 reads
So it looks like today is the day.
SQL Server 2012 has been RTM’d today.
General Release 1st April 2012
http://www.microsoft.com/Presspass/press/2012/mar12/03-06SQLServer12PR.mspx
2012-03-06
2,042 reads
I have had a few people ask me recently about books that I would recommend to help further develop your...
2012-03-05
741 reads
So this is just a short post to test how well I can type and use Blogsy. If it works...
2012-02-13
689 reads
Following on from the first post in my blogging series Building a Blog I’m just going to take a quick...
2012-01-30
779 reads
I took an interest in building a blog/website several years ago when I first started my company and working for...
2012-01-27
754 reads
This is just a short post for Friday. I have been working a fair amount with SSAS and the rest...
2012-01-20
5,590 reads
My good friend Justin Hostettler-Davies (JHD) aka @JHDAVIES , the same JHD who recently scaled Kilimanjaro, is on the fund raising...
2012-01-16
808 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