Handling No Data in SSRS Controls
When SQL Server Reporting Services (SSRS) successfully renders a given report control (i.e. Table, Matrix, List etc.), the result set can...
2015-06-24 (first published: 2015-06-15)
2,299 reads
When SQL Server Reporting Services (SSRS) successfully renders a given report control (i.e. Table, Matrix, List etc.), the result set can...
2015-06-24 (first published: 2015-06-15)
2,299 reads
Hi friends, in this blog of SQL Server database mail stored procedure we will continue with another database mail stored...
2015-06-15
409 reads
I have been thinking about resumes a great deal lately. Since I recently passed the Bar Exam, I have been...
2015-06-14
556 reads
Thanks to everyone who attended my presentation on SQL Server Permissions and Security Principals this morning at Houston SQL Saturday...
2015-06-13
477 reads
Hi friends, in this blog of SQL Server Database mail stored procedure we will continue with another database mail procedure sysmail_add_principalprofile_sp....
2015-06-13
492 reads
It’s almost one month that I didn’t write anything on the blog due to some personal reason. I am really...
2015-06-22 (first published: 2015-06-12)
2,441 reads
I attended the monthly ONETUG meeting last night to do a SQL presentation focused on developers. Same location as last...
2015-06-12
379 reads
Reading Time: 2 minutesMeet the Minion Master! In WOxPod!, episode # 007 – “Midnight DBA”...
The post 007 – Midnight DBA appeared first on...
2015-06-12
529 reads
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards....
2015-06-24 (first published: 2015-06-12)
1,327 reads
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards....
2015-06-12
43 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
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