PASS Board of Directors Part 4
I'm going to share what I can from the interview, but I'm going to have to be a little less...
2008-11-10
387 reads
I'm going to share what I can from the interview, but I'm going to have to be a little less...
2008-11-10
387 reads
When I first got my new laptop, I thought it was very cool. It included a fingerprint reader below the...
2008-11-10
369 reads
User groups provide so many benefits for those looking to get ahead in their career. User Groups share a common...
2008-11-10
509 reads
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
248 reads
I have been working as a DBA for sometime now, and have been exposed to various database environments and with...
2008-11-07
1,190 reads
SQL Server Magazine Connections, which is part of the larger DevConnections conference, will be held November 10-13 in Las Vegas,...
2008-11-07
543 reads
Compared to many other IT professionals, DBAs, on average, make more money. To find out, let's check and find out.
According...
2008-11-07
3,041 reads
In addition to the reading list I'm still struggling to finish, I've always got other books partially started. Maybe that's...
2008-11-07
695 reads
Jason Massie called me out for a new SQL Quiz that was the diabolical idea of Chris Shaw.The gist is...
2008-11-07
1,394 reads
I feel that, ultimately, an Exception DBA is defined by his or her actions, so place yourself in the shoes...
2008-11-07
490 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