What’s New In Denali for SSRS
I was so excited when I found out that Denali was released last week. Like it was Christmas time, I...
2010-11-23
601 reads
I was so excited when I found out that Denali was released last week. Like it was Christmas time, I...
2010-11-23
601 reads
I was so excited when I found out that Denali was released last week. Like it was Christmas time, I...
2010-11-16
481 reads
Write this down… No really… Write it, print it, send it to all of your friends and loved ones. J...
2010-11-15
385 reads
I have never had the opportunity to go to PASS before, but even though I was unable to attend this...
2010-11-15
335 reads
I was creating an SSIS package recently and ran into the “TargetInvocationException: Exception has been thrown by the target of...
2010-11-12
722 reads
Recently, a friend of mine asked me how he could have the date appended to the end of a file...
2010-11-09
13,985 reads
I enjoy blogging. I enjoy passing on the information that I have gathered over the years. I also enjoy doing...
2010-11-09
611 reads
I recently became aware of a special hack in Windows 7. It is called GodMode and can very simply be...
2010-11-09
660 reads
Unlike fine wine, you typically wouldn’t want your statistics to be aged. At least for tables that are being updated...
2010-11-08
3,068 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the third post of my “SQLBIGeek’s Function Friday” blog series. In this series, I am...
2010-11-06
542 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