Speaking engagements for August and September
August and September are going to be some busy weeks!
In those two months I will be speaking on three SQLSaturday...
2015-07-03
548 reads
August and September are going to be some busy weeks!
In those two months I will be speaking on three SQLSaturday...
2015-07-03
548 reads
No no, I didn’t say temporary, but temporal! SQL Server 2016 introduces a great new feature called Temporal Tables. Or...
2015-07-03
2,779 reads
Although generally I prefer to create custom interfaces for my databases using fully developed programming languages like Python or C#....
2015-07-03
508 reads
Well, it has finally happened. In the 7+ years that I helped to run the Omaha SQL/BI User Group, I...
2015-07-02
569 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-07-13 (first published: 2015-07-02)
2,403 reads
If you`re using transactional replication on SQL Server platform on rather large and data intensive environment you may have faced...
2015-07-02
1,692 reads
I’ve been hosting this blog on Azure for a while, running WordPress on top of MySQL. Works fine, gives me...
2015-07-02
526 reads
A while back a give a session at the element61 Microsoft Business Analytics Day, a free event where the capabilities...
2015-07-09 (first published: 2015-07-02)
3,825 reads
Dear All,
“Microsoft Most Valuable Professional “ – MVP is one of the prestigious tag. It is one of the dreams which came...
2015-07-02
487 reads
Many of the companies are using third party backup software for SQL server in order to help to reduce their...
2015-07-02
2,448 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