The developer / DBA relationship.
G’day,
A large part of my job involves liaising with developers. I spent the first 8 years of my IT career working as...
2011-04-27
2,673 reads
G’day,
A large part of my job involves liaising with developers. I spent the first 8 years of my IT career working as...
2011-04-27
2,673 reads
In creating this blog, I was thinking about using some catchy name for myself. Something with “DBA” in it. However,...
2011-04-27
749 reads
We have just kicked off The Mentoring Experiment after talking about it for months. There has been a lot of...
2011-04-27
1,368 reads
News Flash
The SQL Community is about to get stronger. Why? There is a great new initiative that was recently launched....
2011-04-26
803 reads
News Flash The SQL Community is about to get stronger. Why? There is a great new initiative that was recently launched. Steve Jones and Andy Warren are teaming up...
2011-04-26
21 reads
For Day 26 of this series, I want to talk a little about laptop processor selection (since I get a...
2011-04-26
1,241 reads
Code-named Denali – the next version of SQL Server is fast approaching.
And whenever CTP2 gets released you can be sure to...
2011-04-26
978 reads
Today Marlon Ribunal twittes come with new info about MS Certifications exams are rising...
This is not a good news, so...
2011-04-26
928 reads
Day 26 Generate script Generate script for sql server objects is very simple, there are different ways we can generate...
2011-04-26
669 reads
You may have noticed when you setup a merge pull subscription using the
New Subscription Wizard in SSMS that you...
2011-04-26
1,401 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