What to blog about?
As I mentioned in my first post, I thought it would be real difficult to think of things to blog...
2011-05-02
568 reads
As I mentioned in my first post, I thought it would be real difficult to think of things to blog...
2011-05-02
568 reads
For Day 30 of this series, (which is the last day), I am going to talk a little about RAID,...
2011-05-01
942 reads
Writing a month long series is always a lot more work than you initially expect. You would think that I...
2011-05-01
642 reads
As DBAs, one of our biggest responsibilities is to protect our data with backups. So, for this month’s question, “What’s...
2011-05-01
448 reads
For Day 29 of this series, I am going to talk about some of the basic things that you should...
2011-04-30
1,399 reads
I you liked my Powershell a day – april 2011, where every day I wrote a blog about powershell you can...
2011-04-30
1,543 reads
Day 30 Best Practice Having good Security is first best practice for any language no exception with Powershell. Having that...
2011-04-30
1,454 reads
This is a little off topic:
Well Well, it’s the 29th April and all being well in about 2 hours from...
2011-04-29
1,530 reads
So my sister called me the other day to tell me she has a message on her laptop that said...
2011-04-29
1,673 reads
I will be giving a five minute Lightning Talk at SQLRally in May that aims to do the impossible: Teach...
2011-04-29
2,203 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