|
I have an SSIS Package. I need to write a VB.NET (or C#) script task inside the pkg that looks at a specific Sequence Container in the same SSIS Package, cycles through all the executables and stores the names of those executables into an ADO recordset for later use. I'm stuck on the first step: How do I reference the SSIs pkg from inside?
(comments are locked)
|
|
hi , you need to read the package from where it is saved. using System; using System.Collections.Generic; using System.Text; using Microsoft.SqlServer.Dts.Pipeline.Wrapper; using Microsoft.SqlServer.Dts.Runtime; using Microsoft.SqlServer.Dts.Tasks; namespace PROFILE { class Program { } reference link below Reference
(comments are locked)
|

