May 1, 2013 at 1:29 pm
I just upgraded from SQL Server 2005 to SQL Server 2012 and had a procedure that dynamically builds html and uses xp_smtp_sendmail to send the email. One of the parameters for this procedure is @dumpmsg. This parameter allows you to save the html file to the file system. In SQL Server 2012, sp_send_dbmail does not have a parameter to save the html file to the file system. In 2012, how can I build and html file and save it to the file system? Can this be done in TSQL or do I need to use SSIS?
May 1, 2013 at 11:44 pm
You could create a job that will use a Cmd Exec step to save the file. It'll save you a trip to SSIS.
Although there's a great amount of unnecessary fear about it, you could use xp_CmdShell to export it using BCP or SQLCmd.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply