Community and Commitment
If it were not for the SQL Server community, I would not be where I am at with my career...
2014-07-03
748 reads
If it were not for the SQL Server community, I would not be where I am at with my career...
2014-07-03
748 reads
This past week, I was awarded with the Microsoft MVP 2014 for SQL Server award. This is my sixth award...
2014-07-03
592 reads
This post explains how to monitor a multiple services on a group of servers with alternate credentials.
This script will allow...
2014-07-03
702 reads
This post explains how to monitor a multiple services on a group of servers with alternate credentials.
This script will allow...
2014-07-03
1,087 reads
The Midlands PASS Chapter will hold its next meeting on July 10. We meet at MicroStaff IT in Cayce, SC....
2014-07-03
465 reads
Do you always need a demo?
Is a demo always needed?
One of my more popular presentations I have been doing as...
2014-07-03
680 reads
Central Management Server and server groups provide a convenient way to manage multiple servers and databases in one place and at...
2014-07-03
2,392 reads
There are a million and one uses for synonyms. There are at least that many uses for SSIS. The reality is, not all of those uses are good for...
2014-07-03
5 reads
There are a million and one uses for synonyms. There are at least that many uses for SSIS. The reality...
2014-07-03
1,737 reads
Oh we are a bunch of high school kids at heart. Maybe high school never ends (and there’s a nightmare,...
2014-07-03
1,122 reads
By Steve Jones
Next week I’m at VS Live in San Diego (register and join me) and...
Ten years ago today, I filmed a Pluralsight Play by Play on open source...
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
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