Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This article outlines how to automate the delivery of reports via SQL queries.

Info

Note: For assistance beyond what this article covers please contact Microsoft. Assistance by LogiSense here is not considered part of a standard support agreement. However, if required professional services can be arranged to implement these items.

Configuration

  1. In MSSQL Studio Management, click Management branch

    • Select Database Mail - configure this to send emails from your SQL server

  2. Create a view that will include any filter criteria, sorting etc. To limit the size of the data being emailed, use 'Select top 20 *' or something similar so that you don't try to email thousands of rows of data

  3. Create a new job with a step containing the code below code

    • In the code below reference your new view with only 'select * from MYVIEW' (this is why all search / filter / sort criteria should be designed into your view as there are complications with quotes etc.)

    • Schedule the job to run as needed

  4. Test by right clicking the new job and clicking execute

...

Send email functionality emailing the variable that contains the result of the query

Code Block
USE msdb
EXECUTE AS USER = 'dbo'
EXEC msdb.dbo.sp_send_dbmail

@recipients=N'mgallant@logisense.com',
@body='See text attachment for billable users',

@subject ='5xSunrise Billable Users',
@profile_name ='Portal Check',
@query ='SELECT   * from boss.dbo.custombillablepackages',

@attach_query_result_as_file = 1,
@query_attachment_filename ='Results.txt'

...