Is Your Internet Activity Hurting Your DBA Career?
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,079 reads
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,079 reads
Can you believe it? Microsoft has just released an iPhone application for the first time and I doubt it will...
2008-12-17
2,055 reads
I'm still finishing up two books that I'll mention today. Most non-technical books I read straight through, anything technical/learning based...
2008-12-17
546 reads
You might think it's the e-ink screen. It's not.
You might think it's the ability to carry around hundreds of books...
2008-12-17
871 reads
Back in October I had the opportunity to work with Andy Warren and do a series of SQL Server security...
2008-12-17
1,404 reads
I remember when each of my boys started to read a lot. There was a time when both of them...
2008-12-16
770 reads
Another diabolical idea of Chris Shaw. I'm actually late to the game because I got tagged a week ago by...
2008-12-16
995 reads
I saw this blog from Jeffrey Yao on investing in your career, and thought it would be a great editorial....
2008-12-16
824 reads
I'm just finishing up Boards At Work which talks about how a good board of directors can make a big...
2008-12-15
576 reads
… has arrived: http://www.microsoft.com/downloads/details.aspx?FamilyID=ae7387c3-348c-4faa-8ae5-949fdfbe59c4&displaylang=en
It’s obviously hot off the presses because the “What’s New document” is 404.
2008-12-15
681 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