Greetings. I have a 2016 SSIS Package SQL Server Native Client 11.0 connection. When attempting to have an OLE DB Command use this guy it throws up the following message when clicking on the columns tab"
"The metadata could not be determined because statement 'REVERT --Check if SSB is enabled in this database' in procedure 'sp_send_dbmail' does not support metadata discovery.".…..
All it's attempting to do is the following:
EXECUTE [msdb].[dbo].[sp_send_dbmail]
@profile_name = 'CTDynamoAdmin'
,@recipients = 'mylogin@myDomain.com'
,@body = 'This is a test my custom e-mail body.'
,@subject = 'Database Mail Test'
I can run that same block of code from SSMS and the test email arrives.
Any ideas?
Thanks in advance! ChrisRDBA