DB_Owner Querying for Database Options
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-05-21
1,168 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-05-21
1,168 reads
**Information is current as of 5/21/2015**
Recently Azure SQL Database was added as a new connection to the Power BI Preview....
2015-06-01 (first published: 2015-05-21)
2,824 reads
If you know me, you know it is in my nature to help. Whether it’s helping a friend move, helping...
2015-05-21
408 reads
By David Postlethwaite
Once you have logged in to the Azure Management Portal you can start to create an Azure SQL...
2015-05-28 (first published: 2015-05-21)
5,807 reads
Now that the details have been finalized, I can announce that a new SSIS class coming up this fall. My Linchpin...
2015-05-21
598 reads
A colleague of mine discovered an interesting behaviour change from SQL Server 2012 to SQL Server 2014. We recently upgraded...
2015-06-02 (first published: 2015-05-21)
2,979 reads
There is one software tool that should be in every software developer’s tool chest. That is knowledge of the platform...
2015-05-26 (first published: 2015-05-21)
7,639 reads
I have put the code for MergeUi on github now:
https://github.com/GoEddie/MergeUi
That is all.
Tags: MergeUI
2015-05-21
530 reads
I have put the code for MergeUi on github now:
https://github.com/GoEddie/MergeUi
That is all.
2015-05-21
56 reads
I have put the code for MergeUi on github now:
https://github.com/GoEddie/MergeUi
That is all.
2015-05-21
57 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