Autumn Update - Trick or Treat
Its been a busy few weeks for me, most of that outside of gethynellis.com I’m in the process of moving...
2016-11-01
482 reads
Its been a busy few weeks for me, most of that outside of gethynellis.com I’m in the process of moving...
2016-11-01
482 reads
This week's Super duper IT training offers are in:
If you see any that take your fancy let me know. Drop...
2016-10-13
442 reads
This week has been a relatively relaxed week for me. I had a one-day onsite event in Cardiff on Wednesday...
2016-09-30
802 reads
David was in Copenhagen this weekend delivering his Kerberos talk Taming the Beast: Kerberos for the SQL DBA to SQL...
2016-09-29 (first published: 2016-09-20)
3,039 reads
As regular readers of this blog will know I teach some data courses for Learning Tree. Recently Learning Tree has...
2016-09-29
788 reads
Social Media and Analytics is always an interesting combination. Twitter has an API that you can so you can connect...
2016-09-28
1,162 reads
It less than week to SQL Relay - a week long SQL conference that is visiting Birmingham, Cardiff, Reading, Nottingham and...
2016-09-27
504 reads
Its been another Learning Tree week for me this week and a very interesting one at that. I'm on the...
2016-09-23
519 reads
My first Learning Tree SQL Server Newsletter that was sent out back in August was titled SQL Server 2016: Keeping...
2016-09-22
469 reads
David has written a white paper, or short ebook titled building oracle 12C on Linux 7 VM residing on Hyper-V....
2016-09-19
460 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