Is there a way to tell sp_send_dbmail to only send an email when there are more than zero results?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
An option would be to store the results of the query into a temp table. If rows exist, execute
sp_send_dbmail, using a select from the temp table as the query. The proc should be able to see the temp table, but if not you may need to use a global temp table.