Viewing 3 posts - 1 through 3 (of 3 total)
Actually I have tested it. I have saved it into another table and the package name is there. It is also a System variable in the SSIS package itself, so...
September 14, 2012 at 9:48 pm
In the SSIS Execute SQL task I have the following:
EXEC SSIS_MGMT.dbo.LogPackageEnd
@PackageLogID=?
, @BatchLogID = ?
, @EndBatchAudit = ?
, @PackageName = ?
And I have set the System::PackageName as the fourth parameter.
September 14, 2012 at 2:25 pm
Under ideal conditions I pass a parameter @PackageName.
If I use @subject = @PackageName, no mail is received
If I use SET @P = @PackageName
and then use @subject = @P, no...
September 14, 2012 at 2:09 pm
Viewing 3 posts - 1 through 3 (of 3 total)