Jacksonville Code Camp – Introduction to Reporting Services 8.28.2010
The 6th Annual Jacksonville Code Camp is coming up fast. There are tons of great presenters slated to be here...
2010-07-26
384 reads
The 6th Annual Jacksonville Code Camp is coming up fast. There are tons of great presenters slated to be here...
2010-07-26
384 reads
SQL Saturday #40 is quickly approaching and many are gearing up for the trip down there to hear some awesome...
2010-07-20
483 reads
Recently, I have begun my quest of mastering SSAS. I realize that it may take time and I am more...
2010-07-19
514 reads
Creating subscriptions in SQL Server Reporting Services is a great way to distribute files to end users. If it has...
2010-07-19
16,501 reads
If you’re planning on rolling out Report Builder to end users, you may want to download the stand alone installation...
2010-07-18
585 reads
Recently, I have been given the opportunity to work with a company who wanted to explore the capabilities of Report...
2010-07-18
370 reads
Every once in a while, you may have a need to determine how much space is being used by a...
2010-07-07
434 reads
Sometimes you’ll want to manage reporting services functionality through SQL Server Management Studio (SSMS). This would be the case if...
2010-06-29
2,342 reads
I know, it is strange, but it is true...When you create Reporting Services reports that run off of an Analysis...
2010-06-17
1,001 reads
Every once in a while I come across a scenario where I really want to know how long it took...
2010-06-15
563 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