Powershell in a Month – Day 8 Objects: data by another name
This is part of my Powershell Challenge, to learn more about PowerShell (PoSh) using the Learn Windows Powershell 3 in a Month...
2014-01-09
1,203 reads
This is part of my Powershell Challenge, to learn more about PowerShell (PoSh) using the Learn Windows Powershell 3 in a Month...
2014-01-09
1,203 reads
Steve Jones is taking a sabbatical this year and has a few thoughts on what this means for his career.
2014-01-09
533 reads
The holiday time period isn't always a fun time for IT pros who can get stuck working more than usual. Steve Jones talks about some of the experiences he's had.
2014-01-08
151 reads
This is part of my Powershell Challenge, to learn more about PowerShell (PoSh) using the Learn Windows Powershell 3 in a Month...
2014-01-07
1,356 reads
Work on your professional development plan in 2014. Steve Jones has a little advice for you.
2014-01-06
173 reads
2014-01-06
1,860 reads
Steve Jones requests today that DBAs learn to work with developers and make us all more efficient. He asks for your ideas about how we might go about doing this.
2014-01-03
141 reads
It’s been a month and a half in real time since I started the Powershell Challenge. In that time, I...
2014-01-03
1,218 reads
2014-01-02
214 reads
2014-01-01
111 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 Stored Procedures for Server-Level Object...
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
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