Networking Results
I've written quite a few posts lately on networking and a very common question is - where's the results? What do...
2009-04-19
982 reads
I've written quite a few posts lately on networking and a very common question is - where's the results? What do...
2009-04-19
982 reads
What is literature? I find this definition is pretty intuitive at http://classiclit.about.com/od/literaryterms/g/aa_whatisliter.htm and also this one is more comprehensive at...
2009-04-19
1,015 reads
As some of you may have read already, Andy Warren‘s series on LinkedIn (part 1, 2,3) and networking has sparked my...
2009-04-19
1,188 reads
I Need a Backup ... And I Need It Now
Have you ever wished that creating a backup on the fly was...
2009-04-18
3,512 reads
The first Pragmatic Works Foundation class concluded today and I think it was a great success! Each student did very...
2009-04-17
845 reads
I know I discussed this in an early post, but it seems to have reared its ugly head again. This...
2009-04-17
1,587 reads
I went to pay for the Prius this morning; it’s finally done!
Front seatbelts (2) - $412
Rear seatbelts (2) - $260
Front door...
2009-04-17
776 reads
I was talking with a gentleman last night after the Greater Charleston .NET User Group about career development. He's not...
2009-04-17
793 reads
I'm a data guy, so it makes sense for me to think about tracking my data here at home. Recently...
2009-04-17
574 reads
Sure that many informations that we can have from the SQL Server 2008, are organized in system views in each...
2009-04-17
920 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