SQL Server Management Studio: Video Tutorial
SQL Server Management Studio is the all in one tool for developers and DBAs alike to work with SQL Server....
2017-07-25
465 reads
SQL Server Management Studio is the all in one tool for developers and DBAs alike to work with SQL Server....
2017-07-25
465 reads
In this video I talk you through installing SQL Server 2017 RC1 on Windows Server 2016 virtual machine. It’s a...
2017-07-24
458 reads
Introduction
By David Postlethwaite
Ensuring that your databases can survive a major outage such as a server failure and can continue to...
2017-07-14 (first published: 2017-07-03)
2,195 reads
By David Postlethwaite
Introduction
Dynamic data masking is a really useful new tool in SQL Server 2016. Keeping data safe is one...
2017-05-09
1,095 reads
By David Postlethwaite
Always Encrypted is new features in SQL Server 2016 and it is also available in Azure SQL Database....
2017-05-01 (first published: 2017-04-24)
15,985 reads
I received the email from Learning Tree on Wednesday with their weekly offer of courses running in the London Education...
2017-04-21
617 reads
I’ve been playing around with YouTube, making some tutorial videos on SQL Server and it’s been a fun process so...
2017-04-20
530 reads
Its been an interesting weekend at gethynellis.com I have been attempting to put together a SQL Server YouTubechannel. I’m planning...
2017-04-10
320 reads
At the end of March I wrote a couple of posts discussing the state of IT industry. It looked at...
2017-04-07
300 reads
In my previous post titled UK Budget 2017 –The Death Knell for Small Business? We scratched the surface in discussing...
2017-04-03 (first published: 2017-03-22)
1,823 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